blob: aa38ab6b1cb6bc4ef4822c08ffe95f23e2ffea9d [file] [log] [blame]
#!/bin/sh
usage() {
echo "usage: gitflow start hotfix <release>"
echo " gitflow finish hotfix <release>"
}
start() {
# TODO
gitflow_check_clean_working_tree
echo "git checkout -b hotfix-$RELEASE master"
echo "Bump version number"
echo "Fix bug"
}
finish() {
# TODO
gitflow_check_clean_working_tree
echo "git checkout master"
echo "git merge --no-ff hotfix-$RELEASE"
echo "git checkout develop"
echo "git merge --no-ff hotfix-$RELEASE"
echo "git branch -d hotfix-$RELEASE"
}