diff --git a/githelper.sh b/githelper.sh index 1a034881b3..d46c4674e6 100755 --- a/githelper.sh +++ b/githelper.sh @@ -89,13 +89,13 @@ case "$choice" in 4 ) echo ""; echo -e "Here is the list of all saved versions [\033[1mgit tag\033[0m]: \033[1m"; git tag; echo -e "\033[0m"; - echo -e "-Make a new TAG: \033[1mgit tag TAGNAME\033[0m (=save an easy link to this revision)" + echo -e "-Make a new TAG: \033[1mgit tag -f TAGNAME\033[0m (=save an easy link to this revision) (-f = overwrite existing with given name)" echo -e "-Send it to github: \033[1mgit push REMOTE_NAME --tags\033[0m (find your available REMOTE_NAMEs using \033[1mgit remote\033[0m )" echo -e "-Download all tags from github: \033[1mgit fetch REMOTE_NAME\033[0m " echo -e "-Now use one of your tags: \033[1mgit checkout TAG_NAME\033[0m (find the available TAG_NAMEs using \033[1mgit tag\033[0m ) (note that after this command you will be in detached head state which means that you are using a older revision and you can not commit changes here. If you want to make changes you have to make a branch from your tag)" exit; ;; - 4 ) clear; exit 1 ;; + 5 ) clear; exit 1 ;; esac done