Git Workflow Development starts with an assigned issue (or a user story). Cut a feature branch off master for the issue: $ git checkout master $ git pull $ git checkout -b <issue num>_<description> # e.g. 123_reset_password_email