added push of new release branch to make remote
[feisty_meow.git] / scripts / rev_control / quick_git_release.sh
1 #!/bin/bash
2
3 # a simple and quick method for making a new release, merging it into the master branch,
4 # and tagging it with a new tag for the release.
5 # currently needs to be told the new release name, which is actually also gotten from
6 # the "next_version" script.  if these differ, there will be confusion for users about
7 # the right version number.  for now, look at the config file in production to get
8 # the current version, add one to the revision number, and pass major.minor.revision to
9 # this release script.
10
11 source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh
12
13 #hmmm: fixes--
14 #  done + need to make the version a parameter passed to here, and complain if it's not provided.
15 #  + better if we could get the version automatically, but there is a circular dependency where we want to check out the new branch by version number.
16
17 # these are the steps i take on feisty meow when i have a dev branch that is
18 # ready to merge in to the master branch as a new release.  the process
19 # includes adding the tag for the new release and such.  there are manual
20 # steps for adding the commit comments, including an introspection phase
21 # with gitk before the release commit comment is created.
22 function make_new_feisty_meow_release()
23 {
24   # snag the version number from the passed parameter.
25   local new_version="$1"; shift
26   local scriptname="$(basename $0 .sh)"
27
28   if [ -z "$new_version" ]; then
29     echo "\
30 $scriptname: this script requires a version number to use for the
31 branch name and release tag name of the new release.
32 "
33     return 1
34   fi
35
36   # jump into the top of the feisty meow codebase.
37   pushd $FEISTY_MEOW_APEX
38   # make up a release name based on the version number.
39   local new_release="release-${new_version}"
40   # make a new branch for the release based on the dev branch.
41 echo about to git checkout
42 read line
43   git checkout -b $new_release dev
44   exit_on_error checking out a new branch called $new_release
45   # bump feisty meow version. 
46   bash ./scripts/generator/next_version.sh
47   exit_on_error bumping version for feisty meow codebase
48   # check in the changes in the new release branch, which now includes a revised version.
49 echo about to commit
50 read line
51   git commit -a
52   exit_on_error committing all changes
53
54   # not sure if we really need to check in the release branch as a remote, but we like to see it in the list.
55 echo about to push new release branch
56 read line
57   git push --set-upstream origin "$new_release"
58
59   # grab out the master branch as the active one.
60 echo about to check out master
61 read line
62   git checkout master
63   exit_on_error checking out master branch
64   # merge the master branch with the new release.
65 echo about to merge
66 read line
67   git merge --no-ff $new_release
68   exit_on_error merging in the new release in master
69   # let the committer see the most recent changes.
70   echo "=> launching gitk to show you the full set of changes;"
71   echo "=> please prepare a kick-ass commit comment."
72   gitk
73   exit_on_error launching gitk
74   # now make a tag for the new release, which is where we should go crazy with the detailed
75   # and useful comments for what has changed in this release, gathered from the gitk that
76   # we just launched.  this should include all of the work on the development branch since
77   # the last release...
78 echo about to TAG
79 read line
80   git tag -a $new_version
81   exit_on_error tagging new version as $new_version
82   # commit the full set of changes for the master branch now, including the tags.
83 echo about to commit master branch with all those changes
84 read line
85   rcheckin .
86   exit_on_error checking in the changes in master branch
87   # switch back to the dev branch.
88 echo switching to dev branch
89 read line
90   git checkout dev
91   exit_on_error checking the dev branch out again
92   # merge in the latest changes from master, which should only be the revised version really.
93 echo merging in from release branch to dev
94 read line
95   git merge --no-ff $new_release
96   exit_on_error merging the release changes into the dev branch
97   # back to where we started.
98   popd
99 }
100
101
102 make_new_feisty_meow_release "$1"
103
104