How do I move a file (or folder) from one folder to another in TortoiseSVN?

前端 未结 11 2069
庸人自扰
庸人自扰 2020-12-22 14:49

I would like to move a file or folder from one place to another within the same repository without having to use Repo Browser to do it, and without creating two independent

11条回答
  •  死守一世寂寞
    2020-12-22 15:44

    As mentioned earlier, you'll create the add and delete commands. You can use svn move on both your working copy or the repository url. If you use your working copy, the changes won't be committed - you'll need to commit in a separate operation.

    If you svn move a URL, you'll need to supply a --message, and the changes will be reflected in the repository immediately.

提交回复
热议问题