Git
Git flow开发流程
安装Git flow
curl -L https://raw.githubusercontent.com/nvie/gitflow/develop/contrib/gitflow-installer.sh -o /tmp/gitflow-installer.sh
sudo bash /tmp/gitflow-installer.sh初始化
git flow init -d开始一个Feature
git flow feature start <your feature>git flow feature finish <your feature>git flow feature publish <name>git flow feature pull <remote> <name>开始一个Release分支
开始一个Hotfix分支
Last updated