📅  最后修改于: 2023-12-03 15:15:17.401000             🧑  作者: Mango
git flow hotfix - Shell-Bash
git flow
是常用的 Git 库分支工作流程。它主要的思想是在 Git 原本的工作流程上增加一层,将特定目录下的主分支分离成两个分支,一个分支进行开发管理,另一个分支则负责发布。
git flow hotfix
是 git flow
中的一个命令,用于修复紧急 bug。使用这个命令可以从 main 分支创建 hotfix 分支,在 hotfix 分支中进行修改,修改完成后将修改合并到 main 分支和 develop 分支中。
$ git flow hotfix start Shell-Bash
$ git checkout hotfix/Shell-Bash
...进行代码修改...
$ git commit -am "修复 Shell-Bash 问题"
$ git flow hotfix finish Shell-Bash
$ git checkout develop
$ git merge hotfix/Shell-Bash
$ git checkout main
$ git merge hotfix/Shell-Bash
$ git push origin develop main
使用 git flow hotfix
命令可以方便地管理代码的修复流程,保证代码的稳定性和可靠性。