Browse Source

hecks git ui: add remotes section

master
heck 7 months ago
parent
commit
ff124da82a
  1. 8
      bash_profile.d/git.sh

8
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'

Loading…
Cancel
Save