From ff124da82a287a22b1fcce7d921e070e678d9a2d Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 24 Sep 2024 13:17:14 +0200 Subject: [PATCH] hecks git ui: add remotes section --- bash_profile.d/git.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bash_profile.d/git.sh b/bash_profile.d/git.sh index cb42065..d2efee6 100644 --- a/bash_profile.d/git.sh +++ b/bash_profile.d/git.sh @@ -61,8 +61,14 @@ function heck_git_ui { alias gcp='git cherry-pick' # clean - remove untracked files alias gclean='git clean -dxf' + + ## REMOTES # show remote - alias gsr='git remote --verbose' + alias grs='git remote --verbose' + # add remote + alias gra='git remote add' + # remove remote + alias grr='git remote remove' # stats - commits by author alias gstats='git shortlog -sne'