0

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 中单独管理它的配置。

有谁知道如何做到这一点,或者这是不可能的?

4

1 回答 1

0

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

于 2013-09-02T12:11:27.697 回答