From a8664092ae992a7c893fe3f79a74655bd39562af Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 19 Sep 2024 23:25:39 +0200 Subject: [PATCH] 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? --- bash_profile.d/git.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bash_profile.d/git.sh b/bash_profile.d/git.sh index 4a1ea18..cb42065 100644 --- a/bash_profile.d/git.sh +++ b/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