Created
July 30, 2016 22:26
-
-
Save Bat-Chat/88a7ba0761aaf9054b9ef3bf09823b07 to your computer and use it in GitHub Desktop.
Add tag and push it to stage
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 fetch --tags | |
git tag | |
git tag -a v1.0.52 -m 'Commit description' | |
git push origin v1.0.52 | |
then on stage repository: | |
git branch stage | |
git pull origin stage | |
then change composer.json (set new version for package) | |
git commit -a -m 'Commit description' | |
git push origin stage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment