Minor update to bashrc

Add a couple of aliases for `git tag`.
This commit is contained in:
Protesilaos Stavrou 2019-04-17 09:59:19 +03:00
parent f6ea243161
commit eafc7dee2d
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA

View file

@ -322,6 +322,10 @@ if [ "$(command -v git 2> /dev/null)" ]; then
alias gmerg='git merge -S --edit --stat'
alias gmerge='git merge -S --edit --stat'
# tagging
alias gtag='git tag --sign' # followed by the tag's name
alias gtagl='git tag --list'
# syncing
alias gpull='git pull'
alias gfetch='git fetch'