# Git Strategy

We work with the Git Flow principle: the master branch is for finished work. We use features in the develop branch to work on features and requests.

Committing works like this:

  • Stop the Webpack watcher process
  • Select which files to stage in your commit
  • Write a concise message detailing your modifications
  • Commit feature
  • Switch to active develop branch
  • Pull new changes from develop branch
  • Use Git Flow to finish your feature and merge it with develop branch
  • Push to develop branch