Created
October 12, 2017 15:39
-
-
Save matiasherranz/88b834838d1cc46d0561316c20a2d3d0 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 --ff-only 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