Created
October 12, 2017 15:42
-
-
Save matiasherranz/4839a9dce17dfb77563a242797994789 to your computer and use it in GitHub Desktop.
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 feature/my-feature | |
$ git rebase -i master | |
$ git checkout master | |
$ git merge --no-ff feature/my-feature | |
$ git push origin master | |
$ git branch -d feature/my-feature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment