Created
July 19, 2017 16:55
-
-
Save lukeredpath/c0e7d89baa6c56e6969e7b84b4dfd13b to your computer and use it in GitHub Desktop.
Feature branching strategy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
master | |
| | |
|----feature1 | |
| | | |
| |----task1 | |
| | | |
| |----task2 | |
| | |
|----feature2 | |
1. Create feature branch from master | |
2. Create task branch from feature branch | |
3. Do sub-set of feature1 | |
4. Open PR, review, merge to feature branch | |
5. Repeat 2-4 until feature is ready for QA | |
6. Open PR from feature branch to master | |
7. Final code review, QA | |
8. Make changes if necessary | |
9. Merge to master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment