]> Sergey Matveev's repositories - dotfiles.git/blob - zsh/.zsh/rc/010git.zsh
Lazy-loading functions
[dotfiles.git] / zsh / .zsh / rc / 010git.zsh
1 alias Ga="git add"
2 alias Gb="git branch"
3 alias Gbr="git branch --remote"
4 alias Gc="git checkout"
5 alias Gd="git diff"
6 alias Gdc="git diff --cached"
7 alias Gs="git show --show-signature"
8 alias Gm="git diff --name-only --diff-filter=M --relative"
9 alias Gam="git commit --amend"
10 alias Gl="git log --oneline --graph --decorate=short"
11 alias Gld="git log --format=format:'%ai %Cgreen%h%Creset %s'"
12 alias Gp="git log --patch"
13 alias Gr="git remote -v"
14 bindkey -s "\eOR" " git status --short\n" # F3
15 export TOG_COLORS=1