Skip to content

Commit

Permalink
Add create/delete given tag in remote repo
Browse files Browse the repository at this point in the history
  • Loading branch information
szpak committed Sep 19, 2015
1 parent 022e89d commit 65a0c26
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@
tagwithdate = !sh -c 'git tag "$0"_$(date "+%y-%m-%d_%H-%M-%S")'
lasttag = describe --abbrev=0 --tags
checkoutlasttag = !sh -c 'git checkout `git describe --abbrev=0 --tags`'
# Pushes given tag to remote 'origin' repo
publishtag = "!sh -c 'git push origin $0'"
# Removes given tag from remote 'origin' repo
unpublishtag = "!sh -c 'git push origin :refs/tags/$0'"

#better versions
purr = pull --rebase
Expand Down

0 comments on commit 65a0c26

Please sign in to comment.