Describes JIRA-based gitflow
-
Create a JIRA ticket before you start working.
-
One ticket should preferably be a single commit.
-
Keep the commit graph as simple as possible.
-
Don't change the revision history of branches you share with each other.
-
Make sure to get reviews from reviewers.
-
merge your own pull requests.
gitGraph
commit
branch GJ-01
checkout GJ-01
commit
commit
checkout main
merge GJ-01
branch GJ-02
checkout GJ-02
commit
commit
checkout main
merge GJ-02
branch GJ-03
checkout GJ-03
commit
commit
checkout main
merge GJ-03