Skip to content

Commit

Permalink
nice
Browse files Browse the repository at this point in the history
  • Loading branch information
neeasade committed Jun 20, 2019
1 parent 6f1b1ef commit 64c483a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions shell/.sh.d/git
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,12 @@ alias gup='git pull --rebase'
alias gupv='git pull --rebase -v'
alias glum='git pull upstream master'
alias gwch='git whatchanged -p --abbrev-commit --pretty=medium'

# todo: better name
# git tag replace with current head
gtr() {
git tag -d $1
git push origin :refs/tags/$1
git tag $1
git push origin $1
}

0 comments on commit 64c483a

Please sign in to comment.