Last active
November 13, 2018 00:19
-
-
Save kaimallea/5622393 to your computer and use it in GitHub Desktop.
Git config
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 = Kai Mallea | |
email = [email protected] | |
[color] | |
ui = true | |
[alias] | |
st = status | |
co = checkout | |
br = branch | |
lg = log --name-only --graph | |
who = shortlog -s -- | |
assume = update-index --assume-unchanged | |
unassume = update-index --no-assume-unchanged | |
assumed = "!git ls-files -v | grep ^h | cut -c 3-" | |
[core] | |
autocrlf = input | |
safecrlf = true | |
editor = vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment