Skip to content

Commit

Permalink
add reminder to push after tagging new release
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckremes committed Jun 4, 2016
1 parent 47d2e96 commit fca58e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ function rbx_tag_release {

echo Tagging "v$version" as "$message"
git tag -a -m "$message" "v$version"
echo After a successful tag, push tags with 'git push origin master --tags'
}

function rbx_untag_release {
Expand Down Expand Up @@ -56,7 +57,7 @@ function rbx_tag_usage {
cat >&2 <<-EOM
Usage: ${0##*/} option
where option is
tag Tags a release at the current release + 1
tag Tags a release at the current release + 1. Remember to "git push origin master --tags" afterward.
untag VERSION Untags VERSION if it is the current release
EOM
exit 1
Expand Down

0 comments on commit fca58e9

Please sign in to comment.