Choose one of the branching strategies and reproduce it in a git repository. Use such things as merge, commit, and rebase to show how the branching strategy works. As a result, attach the structure shown by git GUI to the Trello ticket. You can use such branching strategies:
- Trunk-Based Development
- GitHub Flow
- GitLab Flow
- Created repository
- Commited initial commit on master
- Created new branch features/feature_0 and checkout
- Commited some changes on feature_0
- Checkout master and commited setup changes
- Checkout feature_0 and rebase master
- Fixed conficts
- Chekout master and merge feature_0
- Created new branch features/feature_1 and made some changes
- Opened Pull Request in GitHub
- Reviewed and merged PR
