Git config branch rebase true by pattern而不是name

时间:2013-09-02 03:54:25

标签: git git-rebase git-pull git-config

Git文档包含以下内容:

branch.<name>.rebase
When true, rebase the branch <name> on top of the fetched branch, instead of merging the default branch from the default remote when "git pull" is run. See "pull.rebase" for doing this in a non branch-specific manner.

如果我使用该分支的名称一切都很完美,但我想将此选项应用于具有共同模式的分支集合,例如'feature-branch- *',这些分支将是短暂的我不想在git config中单独管理它的配置。

有人知道怎么做或者这不可能吗?

1 个答案:

答案 0 :(得分:0)

我尝试使用带有msysgit版本1.8.3的glob模式branch.prefix-*.rebase,但它不起作用,所以至少对于那个版本的Git,你必须使用一个确切的名称。