how do I remove an existing changelist from SVN

后端 未结 3 943
忘了有多久
忘了有多久 2021-01-31 15:02

I created a changelist by doing...

$ svn changelist my_changes

... added files to it, and then committed the changelist...

$ sv         


        
3条回答
  •  执笔经年
    2021-01-31 15:16

    For those that are wondering, you can do this with a single command with svn. Simply navigate to the to level directory of files under your change list exist and run:

    svn changelist --remove --recursive .
    

    This will loop over all files under the current directory and attempt to disassociate them from the change list.

提交回复
热议问题