Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
branches(xxx,yyy)私は多くのリビジョンを持つ 2 つの svn を持っています。分岐する必要があるNEW FILESものを示す方法は?yyy
branches(xxx,yyy)
NEW FILES
yyy
私は違いを意味しませんでした。追加されたファイルが欲しいだけです。
タックス。
以下に示すように、grep とともに svn log コマンドを使用します。
svn log -r rev1:rev2 | xargs grep -i 'add'
これにより、2 つのブランチ間でファイルが追加されます。