Exporting Only changed files from subversion maintaining directory structure

前端 未结 5 536
轮回少年
轮回少年 2020-12-16 03:26

When I right click my local working copy and select show log. TortoiseSVN shows me the full path of each file changed for that revision. From the tortoiseSVN interface what

5条回答
  •  暖寄归人
    2020-12-16 04:08

    I realize this is a very old question, but answering here will help people searching on google like myself:

    svn status | grep '^[ADMR]' | cut -b 8- | xargs -I '{}' cp --parents {} /temporary/destination/dir
    

提交回复
热议问题