标签: git svn branch git-svn
我有一个非常大的代码库,在远程SVN服务器上有很多标签和分支。
我想使用git克隆特定分支以进行处理,然后最终将其合并回远程SVN。这可能吗?我见过的大多数文档都没有直接说这是支持的。
答案 0 :(得分:3)
是的,这很好用。您可以git svn clone https://svn.example.com/project/branches/somebranch/然后正常使用git-svn(例如git svn rebase拉动git svn dcommit推送。)
git svn clone https://svn.example.com/project/branches/somebranch/
git svn rebase
git svn dcommit