Skip to content

Instantly share code, notes, and snippets.

@vladimir-e
Last active December 17, 2015 03:59
Show Gist options
  • Save vladimir-e/5547702 to your computer and use it in GitHub Desktop.
Save vladimir-e/5547702 to your computer and use it in GitHub Desktop.
Git workflow - branch per feature no fast forward #git
$ git checkout -b feature dev
# ...
$ git checkout dev
$ git merge --no-ff feature
$ git branch -d feature
$ git push origin dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment