小编典典

git-svn:如何通过 git 创建一个新的 svn 分支?

all

我有一个跟踪 svn 存储库的 git 存储库。我使用--stdlayout.

我通过创建了一个新的本地分支git checkout -b foobar

现在我希望这个分支最终在…/branches/foobarsvn 存储库中。

我该怎么做?

(剪掉了很多调查性文字。如果你在乎,请查看问题历史)


阅读 67

收藏
2022-07-08

共1个答案

小编典典

从 git v1.6.1 开始,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 分支的方法。

2022-07-08