Undoing a commit in TortoiseSVN

后端 未结 3 1209
夕颜
夕颜 2020-12-04 07:41

I committed a bunch of files (dozens of files in different folders) by accident. What is the easiest, cleanest (and safest!) way to \'undo\' that commit without having to de

3条回答
  •  一向
    一向 (楼主)
    2020-12-04 08:16

    You may need to use the command line, but you can use the SVN merge command and specify the revisions in reverse to effectively revert a commit. Assuming your bad commit was r1123, you would do:

    svn merge -r1123:1122 
    

提交回复
热议问题