Created
August 20, 2012 06:47
-
-
Save jhezjkp/3401674 to your computer and use it in GitHub Desktop.
git全局配置
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
[core] | |
editor = vim | |
#ignore文件可参考https://github.com/github/gitignore | |
excludesfile = ~/.global_ignore | |
[user] | |
name = jhezjkp | |
email = [email protected] | |
[alias] | |
#显示提交图谱 | |
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
co = checkout | |
cm = commit -a | |
st = status | |
br = branch | |
#显示最新一次提交 | |
ll = log -p -1 | |
[color] | |
status = auto | |
branch = auto | |
ui = auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment