how do I remove an existing changelist from SVN

后端 未结 3 945
忘了有多久
忘了有多久 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:25

    If you want to delete just one changelist (e.g. my_changes) move to the top level folder of your working copy and run:

    svn changelist --remove --recursive --cl my_changes .
    

提交回复
热议问题