本文主要是介绍SmartGit的gitflow模式下创建release报“There is an existing release branch 'xxx'. Finish that one first.”,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
异常提示
There is an existing release branch 'xxx'. Finish that one first. To work with multiple hotfixes at the same time, configure Git config option 'gitflow.multi-release=true'.
解决方案
打开git bash
,按照提示配置git
在命令行中输入git config --global gitflow.multi-release true
验证
再次在Smartgit中操作release创建成功
也可打开git的user配置文件,如下图:
这篇关于SmartGit的gitflow模式下创建release报“There is an existing release branch 'xxx'. Finish that one first.”的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!