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.
我有 2 个 svn branches(xxx,yyy),有很多修改。如何显示哪些NEW FILES必须yyy分支?
branches(xxx,yyy)
NEW FILES
yyy
我不是说差异。我只想添加哪些文件。
萨克斯。
使用 svn log 命令和 grep 如下所示:
svn log -r rev1:rev2 | xargs grep -i 'add'
这将为您提供 2 个分支之间的文件添加。