Last active
December 17, 2015 03:59
-
-
Save vladimir-e/5547702 to your computer and use it in GitHub Desktop.
Git workflow - branch per feature no fast forward #git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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