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'