Last active
July 31, 2017 04:54
-
-
Save AlexKorovyansky/6191e45bc955a0fde33a to your computer and use it in GitHub Desktop.
.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
[user] | |
name = Alex Korovyansky | |
email = [email protected] | |
[core] | |
excludesfile = /Users/akorovyansky/.gitignore_global | |
editor = mcedit | |
autocrlf = input | |
[push] | |
default = simple | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch | |
lol = log --graph --decorate --pretty=oneline --abbrev-commit | |
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short | |
undo = reset --hard | |
stat = show --stat | |
pull = pull --no-commit | |
[apply] | |
whitespace = nowarn | |
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
[filter "media"] | |
clean = git-media-clean %f | |
smudge = git-media-smudge %f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment