Aliases
Back to home
These aliases are configured automatically at the system level when you run the setup command.
gs
git status -sb
gl
git log --oneline --decorate --graph --all -n 20
gll
git log --stat
gd
git diff --word-diff=color
gds
git diff --staged --word-diff=color
ga
glinter add
gaa
git add -A
gc
glinter commit
gcm
git commit -m
gca
git commit --amend
gcan
git commit --amend --no-edit
gb
git branch
gba
git branch -a
gco
glinter switch
gcb
git checkout -b
gpl
git pull
gplr
git pull --rebase
gp
git push
ggpush
git push origin HEAD
gpf
git push --force-with-lease
gst
git stash
gstp
git stash pop
gstl
git stash list
gcl
git clean -fd
grh
git reset --hard
ggrh
glinter reset-hard
ggclean
git reset --hard && git clean -fd