From cd0415885b24961ea98d790ffd88309d36e356b2 Mon Sep 17 00:00:00 2001 From: heck <heck@heck.live> Date: Tue, 24 Sep 2024 13:18:27 +0200 Subject: [PATCH] hecks-git-ui: always use [d]elete instead of [r]emove (r clashes with rename) --- bash_profile.d/git.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash_profile.d/git.sh b/bash_profile.d/git.sh index d2efee6..03e57ad 100644 --- a/bash_profile.d/git.sh +++ b/bash_profile.d/git.sh @@ -67,8 +67,8 @@ function heck_git_ui { alias grs='git remote --verbose' # add remote alias gra='git remote add' - # remove remote - alias grr='git remote remove' + # delete remote + alias grd='git remote delete' # stats - commits by author alias gstats='git shortlog -sne'