场景:鼓励在特定存储库中使用git flow
。现在,检出存储库的任何人都必须运行git flow init
,并希望此存储库的默认约定/设置正确。
有没有办法让存储库直接告诉git flow init
它应该使用哪些设置,而不提示用户?
答案 0 :(得分:3)
您可以在项目存储库中创建.gitconfig
(或任何您想要的名称)并提交它。
您需要运行git config
命令(见下文)告诉git使用此文件,然后它将使用其中指定的默认值。
-d
中的git flow init
选项告诉它使用默认值,而不是提示用户。
它确实添加了一个需要运行的额外命令(本地配置设置),但我没有看到一种方法可以在不要求用户运行某些自定义命令的情况下执行此操作。
.gitconfig
[gitflow "branch"]
master = m
develop = d
[gitflow "prefix"]
feature = f/
bugfix = b/
release = r/
git config --local include.path ../.gitconfig
git flow init -d
$ git branch
* d
m
$ git flow feature start foo
Switched to a new branch 'f/foo'
Summary of actions:
- A new branch 'f/foo' was created, based on 'd'
- You are now on branch 'f/foo'