Git
curl -L https://raw.githubusercontent.com/nvie/gitflow/develop/contrib/gitflow-installer.sh -o /tmp/gitflow-installer.sh
sudo bash /tmp/gitflow-installer.sh
开始规定工作流,进入
develop
分支开发git flow init -d
git flow feature start <your feature>
完成一个Feature
git flow feature finish <your feature>
上传一个 Feature
git flow feature publish <name>
或上传一个Feature到某个remote
git flow feature pull <remote> <name>
git flow release
git flow release start <release> [<base>]
git flow release finish <release>
git flow hotfix
git flow hotfix start <release> [<base>]
git flow hotfix finish <release>
Last modified 5yr ago