Browse Source

hecks git ui: always push tags.

remove gpusht
remove gpushtf
tags are implicit now and pushed by default.
you cannot NOT push tags

a dev should always be able to push tags, cause working in a branch or own it right?
master
heck 7 months ago
parent
commit
a8664092ae
  1. 4
      bash_profile.d/git.sh

4
bash_profile.d/git.sh

@ -28,7 +28,7 @@ function heck_git_ui {
alias gc='git commit'
# push
alias gpush='git push'
alias gpush='git push --tags'
@ -39,8 +39,6 @@ function heck_git_ui {
alias gclonebaremirror='git clone --mirror'
# push
alias gpushf='git push --force'
alias gpusht='gpush; gpush --tags'
alias gpushtf='gpushf;gpushf --tags'
# tag create
alias gt='git tag'
# tag delete

Loading…
Cancel
Save