在当前的 subversion 存储库上安装 git 存储库会起作用吗?
我使用本地 subversion/tortoisesvn 作为代码存储库。
我还想在相同的代码上使用 github。
简单地安装 github 存储库和客户端等是否可以工作,而无需从 subversion 存储库中删除文件?
在我看来应该有问题。例如,哪个客户端决定在 Windows 资源管理器中的文件附近显示哪些图标等......
I use local subversion/tortoisesvn for code repository.
I want to also use github on the same code.
Will simply installing the github repository and client etc.. work without removing the files from the subversion repository?
It seems to me like there should be issues. for example which client decides which icons will be shown near the files in the windows explorer etc....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不希望工作树彼此重叠。
考虑使用 git-svn,它可以让你将 svn 存储库视为远程 git 存储库。
创建一个 git 存储库,通过 git-svn 从 svn 存储库中提取数据来填充它,然后将其推送到 github。
You don't want the working trees to be on top of each other.
Look into using git-svn, which lets you treat your svn repository as a remote git repository.
Create a git repository, populate it with a pull from the svn repository via git-svn, and push that to github.