linux下如何使用svn判断本地文件夹那些文件已改动的命令

来源:互联网 发布:mac怎样保存收藏网页 编辑:程序博客网 时间:2024/05/16 05:33

svn diff --diff-cmd "diff" -x "-q" . | grep Index | cut -d " " -f 2


转载自:http://jonathanpolansky.com/2009/04/list-only-the-path-and-filenames-of-files-with-differences-using-subversion-svn/

以下是原文:


The Subversion svn command has built in diff functionality but it is more limited than GNU diff. It doesn’t allow you to use the ‘-q’ option to“Report only whether the files differ, not the details of the differences.” Luckily, svn allows you to specify an external “diff” command and then pass it arguments.  Use the following command to list only files with local modifications and changes within a subversion checkout.


原创粉丝点击