git配置收集

.gitconfig (win用户目录下)

[user]
	email = tostarrysky@gmail.com
	name = Wesley
[http]
	postBuffer = 524288000
[alias]
	lg =   log --color --graph --date=format:'%Y%m%d %H:%M:%S' --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cd) %C(bold blue)<%an>%Creset' --abbrev-commit
	st = status
	ci = commit -m
	co = checkout
	br = branch
	last = lg -1 HEAD
	unstage = reset HEAD -- 
[core]
	excludesfile = C://Users//WESLEY//.gitignore_global
	autocrlf = false
	eol = lf
	safecrlf = true
[gui]

.gitignore_global


# idea 
*.iml
.idea/
target/
out/
bin/
build/
# java
*.class
# jrebel
rebel.xml
# udf 
groupby/

上一篇:极客日报第 21 期:360 安全浏览器尝试收费;苹果macOS首次出现在云端


下一篇:基数排序