将我的存储库视为 SVN 存储库,我得到:
svn co http://myrepo/foo/trunk foo
...
foo/
bar/
baz/ -> http://myrepo/baz/trunk
将其视为 Git 存储库,我得到:
git svn clone http://myrepo/foo --trunk=trunk --branches=branches --tags=tags
...
foo/
bar/
我可以将 baz 克隆到其他地方的本地计算机并添加符号链接,但这只是一个 hack。有没有办法git svn rebase
在更新其他所有内容时自动提取这些更改,就像这样svn up
做一样?