Created
December 22, 2014 08:29
-
-
Save zaky/78181ca1be18acc58b88 to your computer and use it in GitHub Desktop.
Merge flow
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
| #Find differences | |
| git diff --stat --color GS-1702-migrate-bo-server-to-php-55..master | |
| #Merge master | |
| #git checkout [branch] | |
| git merge --no-commit --no-ff master | |
| git commit -am"merge master" | |
| git push | |
| #Merge brange | |
| #git checkout master | |
| git merge --no-commit --no-ff GS-1702-migrate-bo-server-to-php-55 | |
| git commit -am"merge GS-1702-migrate-bo-server-to-php-55" | |
| git push | |
| #Create tag | |
| git tag -a v1.25.00-WITHOUT-PHP55 -m 'version 1.25.00' && git push origin v1.25.00-WITHOUT-PHP55 | |
| #Delete tag | |
| #git tag -d v1.25.00-RC1 && git push rigin :refs/tags/v1.25.00-RC1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment