Subversion: Can I checkout, modify, and then make it a branch?

后端 未结 4 1827
离开以前
离开以前 2021-01-30 15:57

I did a checkout from my trunk to a local DIR and made lots of local changes there. Now I don\'t want to commit it back to the trunk, but I\'d rather make a branch from this loc

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-30 16:09

    According to its command line help svn copy can copy from a directory to a repository URL. So you should be able to copy your working copy to the branch, e.g.:

    svn copy working_directory url_to_branch
    

提交回复
热议问题