如何通过指定我自己的分支名称,版本前缀等来自动化git flow初始化。我尝试使用shell脚本但是在执行后无法将数据发送到脚本:
$('li').click(function(){
if( $(this).index() == 0)
$(this).insertBefore( $(this).parent().find("li").eq(2));
else
$(this).insertBefore( $(this).parent().find("li").eq(1));
});
我不想要我想要指定的默认值,但不必每次都写它们。
答案 0 :(得分:0)
您可以手动更改.git / config文件以反映所需的配置。
在运行“git flow init”之前和之后比较.git / config文件。 它将添加所选配置。例如,默认配置行为:
[gitflow "branch"]
master = master
develop = develop
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag =