Does svn have a `revert-all` command?

后端 未结 4 1258
无人及你
无人及你 2021-01-29 21:10

If I want to throw away all of my changes, and return to the code that is on the repository, I do the following:

$ rm -fr *
$ svn up

This is ea

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-29 22:02

    Use the recursive switch --recursive (-R)

    svn revert -R .
    

提交回复
热议问题