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

前端 未结 4 2170
说谎
说谎 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

    Works on all platforms:

    svn revert . --recursive
    

    (Note that this will revert everything, not just directories.)

提交回复
热议问题