Git Workflow
References
[1] http://nvie.com/posts/a-successful-git-branching-model/
A golden git workflow:
Branches
feature/*: feature branches that are worked on by developers
develop: like trunk based git workflow, this develop branch contains all commits under development
master: golden version of the project, must be working in production
release/*: these release branches are cut off from develop branch. Must eventually be merged to both develop and master branches.
hotfix/*: these hotfix branches are taken from master branch and are for bug fixes. Must eventually be merged to both develop and master branches.
Workflow
1. Start a feature/* branch on a certain jira ticket, like feature/jira-120322
2. Complete your work in the fretaure branch and merge it to develop branch afer code review
3. When planning on a release, cut off a release branch like release/1.0.1 from the develop branch and push any further bugfix commits into this branch
4. After successfully released the project from release branch, merge release/* back to both develop and master branch. master branch now has the golden version
5. Once we need to bug fix the version in master, we cut off a hotfix branch from master like hotfix/1.0.2. We apply the hotfix commits and finally release it to production
6. Merge the hotfix branch back to develop and master branches
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· Cursor预测程序员行业倒计时:CTO应做好50%裁员计划
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· 用99元买的服务器搭一套CI/CD系统
· Excel百万数据如何快速导入?
· 35岁程序员的中年求职记:四次碰壁后的深度反思