Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 456 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (22 loc) · 456 Bytes

All work must have an associated Issue, in order to be able to trace it back.

  1. Initialize git-flow:
bash .bin/git_gitflow.sh init
  1. Start a new feature, where X is the Issue #:
git flow feature start Issue-X
  1. Work in your solution 👩‍💻✏️😄

  2. Finish the feature:

git flow feature finish Issue-X
  1. Pull 'develop' changes:
git pull develop
  1. Push your changes:
git pull develop