Last active
February 22, 2017 10:51
-
-
Save gpolguere/39daa9304d24273d6855 to your computer and use it in GitHub Desktop.
My .gitconfig
This file contains hidden or 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
| [alias] | |
| st = status | |
| ci = commit | |
| br = branch | |
| co = checkout | |
| df = diff | |
| lg = log -p | |
| hist = log --graph --full-history --all --pretty=format:'%C(yellow)%h%Creset %ad | %s %C(red)- %an --%Creset%C(green)%d%Creset' --date=short | |
| type = cat-file -t | |
| dump = cat-file -p | |
| files = diff --name-only | |
| empty = commit --allow-empty -m | |
| [color] | |
| ui = auto | |
| [http] | |
| sslVerify = false | |
| [core] | |
| ignorecase = false | |
| fileMode = true | |
| [filter "lfs"] | |
| clean = git-lfs clean %f | |
| smudge = git-lfs smudge %f | |
| required = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment