How do you revert ONLY directories in an SVN working copy?

前端 未结 4 2184
说谎
说谎 2021-02-12 22:22

I want to revert a directory and all sub-directories in an SVN working copy so they match the repository but I don\'t want to touch any files i

4条回答
  •  时光取名叫无心
    2021-02-12 23:00

    Firstly, make a copy of your working copy somewhere safe. :)

    You can edit properties on svn working copies using commands like this:

    REM Delete all mergeinfo properties recursively
    svn propdel svn:mergeinfo -R
    

提交回复
热议问题