Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非常大的代码库,在远程 SVN 服务器上有许多标签和分支。
我想使用 git 克隆一个特定的分支来处理,然后最终将它合并回远程 SVN。这可能吗?我见过的大多数文档都没有直接说这是支持的。
是的,这很好用。你可以做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