Mac安装git flow

下载

1.从git下载

终端输入

curl -L -O https://raw.github.com/nvie/gitflow/develop/contrib/gitflow-installer.sh

执行sh文件

sudo bash gitflow-installer.sh

2.使用homebrew安装

brew install git-flow

初始化git flow

在仓库所在目录输入 git flow init

之后会出现选择提示

Branch name for production releases: []  // 主生产分支,一般选择master

Branch name for next releases: [] //一般选择develop

之后会出现 feature、hotfix等选择提示,一路默认回车即可

*注:若你的仓库是新建的或者新克隆的,可能本地只会有master分支或仅有develop分支,这时候production releases 和 next releases的默认提示可能会只显示本地唯一分支,所以在init时最好保证本地有master及develop两个分支

你可能感兴趣的:(mac)