blob: d921762ca5b2ab19a66a3d185590dd1fa5b43ff1 [file] [log] [blame]
Benedikt Böhm00ccea62010-01-26 12:39:36 +01001#
Vincent Driessen6c2d30b2010-01-26 22:18:36 +01002# git-flow -- A collection of Git extensions to provide high-level
3# repository operations for Vincent Driessen's branching model.
Benedikt Böhm00ccea62010-01-26 12:39:36 +01004#
5# Original blog post presenting this model is found at:
6# http://nvie.com/archives/323
7#
8# Feel free to contribute to this project at:
9# http://github.com/nvie/gitflow
10#
11# Copyright (c) 2010 by Vincent Driessen
12# Copyright (c) 2010 by Benedikt Böhm
13#
14
15usage() {
Vincent Driessen186d2b52010-01-27 23:48:39 +010016 echo "usage: git flow hotfix"
17 echo " git flow hotfix start <version> [<base>]"
18 echo " git flow hotfix finish <version> [<base>]"
Benedikt Böhm00ccea62010-01-26 12:39:36 +010019 # TODO
20 #echo ""
21 #echo "options:"
22 #echo "--option Explanation"
23 #echo ""
24 #echo "start-only options:"
25 #echo "--option Explanation"
26 #echo ""
27 #echo "finish-only options:"
28 #echo "--push Push to the origin repo when finished"
29}
30
31parse_args() {
32 VERSION="$1"
Benedikt Böhm4a864fb2010-01-26 12:59:27 +010033 BASE="${2:-$MASTER_BRANCH}"
Benedikt Böhm00ccea62010-01-26 12:39:36 +010034 if [ "$VERSION" = "" ]; then
35 echo "Missing argument <version>."
36 usage
37 exit 1
38 fi
Benedikt Böhm96f44c02010-01-26 13:09:32 +010039 PREFIX=$(git config --get gitflow.prefix.hotfix || echo hotfix/)
40 BRANCH=$PREFIX$VERSION
Benedikt Böhm00ccea62010-01-26 12:39:36 +010041}
42
Vincent Driessen186d2b52010-01-27 23:48:39 +010043cmd_default() {
44 # TODO: Refactor getting this prefix into a general function
45 PREFIX=$(git config --get gitflow.prefix.hotfix || echo hotfix/)
46 HOTFIX_BRANCHES="$(echo "$LOCAL_BRANCHES" | grep "^$PREFIX")"
47 if [ -z "$HOTFIX_BRANCHES" ]; then
48 warn "No hotfix branches exist."
49 exit 0
50 fi
51 echo "$HOTFIX_BRANCHES" | sed "s?^$PREFIX??g"
52}
53
Benedikt Böhm00ccea62010-01-26 12:39:36 +010054cmd_help() {
55 usage
56 exit 0
57}
58
59cmd_start() {
60 parse_args "$@"
61
62 # sanity checks
63 gitflow_check_clean_working_tree
Benedikt Böhm4d222272010-01-26 14:46:56 +010064 git fetch -q $ORIGIN
Benedikt Böhm350e7152010-01-26 13:05:05 +010065 gitflow_require_branches_equal $MASTER_BRANCH $ORIGIN/$MASTER_BRANCH
Benedikt Böhm00ccea62010-01-26 12:39:36 +010066 gitflow_require_branch_absent $BRANCH
67
68 # create branch
69 git checkout -b $BRANCH $BASE
70
71 echo
72 echo "Summary of actions:"
73 echo "- A new branch '$BRANCH' was created, based on '$BASE'"
74 echo "- You are now on branch '$BRANCH'"
75 echo
76 echo "Follow-up actions:"
77 echo "- Bump the version number now!"
78 echo "- Start committing your hot fixes"
79 echo "- When done, run:"
80 echo
81 echo " git flow finish hotfix '$HOTFIX_BRANCH'"
82 echo
83}
84
85cmd_finish() {
86 parse_args "$@"
87
88 # sanity checks
89 gitflow_check_clean_working_tree
Benedikt Böhm4d222272010-01-26 14:46:56 +010090 git fetch -q $ORIGIN $MASTER_BRANCH
91 git fetch -q $ORIGIN $DEVELOP_BRANCH
Benedikt Böhm350e7152010-01-26 13:05:05 +010092 gitflow_require_branches_equal $MASTER_BRANCH $ORIGIN/$MASTER_BRANCH
93 gitflow_require_branches_equal $DEVELOP_BRANCH $ORIGIN/$DEVELOP_BRANCH
Benedikt Böhm00ccea62010-01-26 12:39:36 +010094
95 # merge into BASE
96 git checkout $BASE
97 git merge --no-ff $BRANCH
98 git tag v$VERSION
99
100 # merge into develop if we fixed a master issue
101 # TODO: merge into support branch
Benedikt Böhm4a864fb2010-01-26 12:59:27 +0100102 if [ "$BASE" = "$MASTER_BRANCH" ]; then
103 git checkout $DEVELOP_BRANCH
Benedikt Böhm00ccea62010-01-26 12:39:36 +0100104 git merge --no-ff $BRANCH
105 fi
106
107 # delete branch
108 git branch -d $BRANCH
109
110 # TODO: Implement an optional push to master
111 # git push origin develop; git push origin master; git push --tags origin
112
113 echo
114 echo "Summary of actions:"
Benedikt Böhm350e7152010-01-26 13:05:05 +0100115 echo "- Latest objects have been fetched from '$ORIGIN'"
Benedikt Böhm00ccea62010-01-26 12:39:36 +0100116 echo "- Hotfix branch has been merged into '$BASE'"
117 echo "- The hotfix was tagged 'v$VERSION'"
Benedikt Böhm4a864fb2010-01-26 12:59:27 +0100118 if [ "$BASE" = "$MASTER_BRANCH" ]; then
119 echo "- Hotfix branch has been back-merged into '$DEVELOP_BRANCH'"
Benedikt Böhm00ccea62010-01-26 12:39:36 +0100120 fi
121 echo "- Hotfix branch '$BRANCH' has been deleted"
122 echo
123}