Last active
November 11, 2016 12:10
-
-
Save gumeniukcom/68d9eccfa5ead8f5ca2c to your computer and use it in GitHub Desktop.
Pretty gitconfig!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
status=auto | |
branch=auto | |
interactive=auto | |
diff=auto | |
[alias] | |
s = status | |
st = status | |
b = branch | |
ba = branch -a -v -v | |
bs = !git-branch-status | |
bsi = !git-branch-status -i | |
ci = commit | |
co = checkout | |
d = diff -C | |
ds = diff -C --stat | |
dsp = diff -C --stat -p | |
dw = diff -C --color-words | |
l = log -C --decorate | |
ls = log -C --stat --decorate | |
lsp = log -C --stat -p --decorate | |
lg = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cred%an%Creset%Cblue%d%Creset %s' | |
lga = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cred%an%Creset%Cblue%d%Creset %s' --all | |
l19 = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cblue%d%Creset %s' --all -19 | |
# для сложных ветвлений | |
lsd = log --graph '--pretty=tformat:%Cblue%h%Creset %Cgreen%ar%Creset %Cblue%d%Creset %s' --all --simplify-by-decoration | |
ru = remote update | |
sb = show-branch --sha1-name | |
ls-del = ls-files -d | |
ls-mod = ls-files -m # включая удалённые файлы | |
ls-new = ls-files --exclude-standard -o | |
ls-ign = ls-files --exclude-standard -o -i | |
ka = !gitk --all | |
kdo = !gitk --date-order | |
kado = !gitk --all --date-order | |
kasd = !gitk --all --simplify-by-decoration | |
[core] | |
excludesfile = .gitignore_global | |
autocrlf = input |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment