Gitflow Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=External= | =External= | ||
* http://nvie.com/posts/a-successful-git-branching-model/ | * http://nvie.com/posts/a-successful-git-branching-model/ | ||
* http://weaintplastic.github.io/web-development-field-guide/Collaboration/Working_with_Git/Git_Workflow/The_Concept_of_Gitflow | |||
* https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow | * https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow | ||
* https://jeffkreeftmeijer.com/git-flow/ | * https://jeffkreeftmeijer.com/git-flow/ |
Revision as of 00:42, 6 March 2024
External
- http://nvie.com/posts/a-successful-git-branching-model/
- http://weaintplastic.github.io/web-development-field-guide/Collaboration/Working_with_Git/Git_Workflow/The_Concept_of_Gitflow
- https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow
- https://jeffkreeftmeijer.com/git-flow/
Internal
Overview
Gitflow is a development and release model built around git
, a small set of branch types ("main", "develop", "release-*", "hotfix-*" and feature), and procedures around those branch types.