svn list of files that are modified in local copy

后端 未结 12 1462
无人及你
无人及你 2021-02-01 00:24

I use Tortoise client to checkout/commit my changes to SVN. But I found this little difficult because I\'m not able to find List of all files that are changed in my local copy.

12条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 01:05

    If you really want to list modified files only you can reduce the output of svn st by leading "M" that indicates a file has been modified. I would do this like that:

    svn st | grep ^M
    

提交回复
热议问题