Skip to content

Instantly share code, notes, and snippets.

@jhezjkp
Created August 20, 2012 06:47
Show Gist options
  • Save jhezjkp/3401674 to your computer and use it in GitHub Desktop.
Save jhezjkp/3401674 to your computer and use it in GitHub Desktop.
git全局配置
[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