Created
October 16, 2013 11:05
-
-
Save ChrisMcKee/7006083 to your computer and use it in GitHub Desktop.
GitFlow quick release cmd.
Assuming your using it properly; and presuming you need to make a deployment and don't plan on making 'changes' in the release that have to be merged back. This creates, publishes a release then finishes it,
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
@echo off | |
set /p delBuild=Enter the release number (without the v)? | |
git flow release start v%delBuild% && git flow release publish v%delBuild% && git flow release finish v%delBuild% && git push | |
git checkout develop | |
echo "Completed, you're now back on develop" | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment