使用 TortoiseSVN 更改文件夹上的存储库
我不小心在 TortoiseSVN 中创建了一个没有默认文件夹的存储库,然后在本地进行了签出。 意识到嘿,我忘记使用默认值创建该存储库,因此我使用 VisualSVN Server 删除了该存储库,然后重新创建了相同的存储库名称,该名称现在具有默认文件夹 trunk 等。
问题是,我的本地文件夹已被签出。 如何更改/重新指向新的存储库 URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以右键单击该文件夹,然后单击 Tortoise 菜单中的“重新定位”。
You can right click on the folder, and click "relocate" in the Tortoise menu.
您可以右键单击您的工作副本并选择 TortoiseSVN/Switch...
然后将“到路径:”更改为存储库中的新文件夹。
这对我有用。
You can right click your working copy and select TortoiseSVN/Switch...
Then change the "To path:" to the new folder in the repository.
It worked for me.
您将无法轻松完成此操作,因为这两个存储库没有相同的唯一标识符 (UID)。 有两种方法可以做到这一点:
在新存储库上强制使用特定的 UID(不确定您的 SVN 服务器是否提供了该选项)
不要删除存储库,只需在工作副本中创建文件夹,然后
svn move
将文件放入主干,然后将整个内容签入。You won't be able to do this easily, as the two repositories don't have the same unique identifier (UID). There are 2 ways you could have done this:
Force a particular UID on the new repository (not sure if your SVN server gives that option)
Don't delete the repository, just create the folders in your working copy, and
svn move
the files into trunk, then check the whole thing in.假设您在签出版本中没有任何需要的文件,只需删除该目录并再次签出即可。
Assuming you don't have any files in the checked out version that you need, just delete the directory and checkout again.
(假设您的本地工作副本中有文件):由于您创建了一个新的存储库,我想您必须将工作副本导入到存储库中。
使用 TortoiseSVN,您可以将工作副本导出到不同的文件夹(这样您就只有源文件,没有 .svn 文件夹)。 然后您可以将该文件夹导入到新存储库的 /trunk 中。
(Assuming you have files in your local working copy): Since you created a new repository, I guess you have to import your working copy into the repository.
Using TortoiseSVN, you can export your working copy to a different folder (so that you only have your source files, without the .svn folders). Then you can import that folder into /trunk of your new repository.