Last active
December 29, 2015 21:19
-
-
Save zenozeng/7729848 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 = Zeno Zeng | |
email = [email protected] | |
[color] | |
#开启着色功能 | |
status = auto | |
diff = auto | |
branch = auto | |
interactive = auto | |
[alias] | |
#别名 | |
pu = push | |
st = status | |
ci = "commit -m" | |
br = branch | |
co = checkout | |
cia = "commit -am" | |
df = diff | |
dt = difftool | |
mg = merge | |
mt = mergetool | |
ll = "log --oneline" | |
[push] | |
default = current | |
[credential] | |
helper = cache --timeout=7200 | |
[gui] | |
encoding = utf-8 | |
[i18n] | |
commitencoding = utf-8 | |
logoutputencoding = utf-8 | |
[core] | |
# 保证在 git status 时文件名不乱码 | |
quotepath = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment