SmartGit的gitflow模式下创建release报“There is an existing release branch 'xxx'. Finish that one first.”

异常提示

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.”