diff options
author | W. Trevor King <wking@drexel.edu> | 2010-10-21 08:18:48 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-10-21 08:18:48 -0400 |
commit | c3d3f531440102986c83bf6611f45e81c9e636b3 (patch) | |
tree | e203577f187bc65ce173fc7ca96470ea7d79ba5b /release.py | |
parent | 8779fc64deda18b6973da3eef57aaca680709991 (diff) | |
download | bugseverywhere-c3d3f531440102986c83bf6611f45e81c9e636b3.tar.gz |
Simpler undo message in release.py's help.
Diffstat (limited to 'release.py')
-rwxr-xr-x | release.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -149,9 +149,9 @@ Create a git tag and a release tarball from the current revision. For example %prog 1.0.0 -You may wish to test this out in a dummy branch first to make sure it -works as expected to avoid the tedium of unwinding the version-bump -commit if it fails. +If you don't like what got committed, you can undo the release with + $ git tag -d 1.0.0 + $ git reset --hard HEAD^ """ p = optparse.OptionParser(usage) p.add_option('--test', dest='test', default=False, |