我有一个跟踪 svn 存储库的 git 存储库。我使用--stdlayout.
--stdlayout
我通过创建了一个新的本地分支git checkout -b foobar
git checkout -b foobar
现在我希望这个分支最终在…/branches/foobarsvn 存储库中。
…/branches/foobar
我该怎么做?
(剪掉了很多调查性文字。如果你在乎,请查看问题历史)
从 git v1.6.1 开始,git svn branch可用。
git svn branch
来自 git 文档:
branch Create a branch in the SVN repository. -m, --message Allows to specify the commit message. -t, --tag Create a tag by using the tags_subdir instead of the branches_subdir specified during git svn init.
以前版本的 git 不提供创建 svn 分支的方法。