All work must have an associated Issue, in order to be able to trace it back.
- Initialize git-flow:
bash .bin/git_gitflow.sh init
- Start a new feature, where X is the Issue #:
git flow feature start Issue-X
-
Work in your solution 👩💻✏️😄
-
Finish the feature:
git flow feature finish Issue-X
- Pull 'develop' changes:
git pull develop
- Push your changes:
git pull develop