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
	autocrlf = true
	safecrlf = false
	quotepath = false
	preloadindex = true
[gc]
	auto = 256
[i18n]
	logoutputencoding = utf8
	commitencoding = utf8
[difftool "sourcetree"]
	cmd = '' \"$LOCAL\" \"$REMOTE\"
[mergetool "sourcetree"]
	cmd = "'' "
	trustExitCode = true


.gitignore_global


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

# Compiled class file
*.class
*/target/*
target/
jrebel.xml
rebel.xml
.rebel.xml*
bin/
out/
*.iml
*.bak
build/


# project setting
*/settings
*/settings/*
.idea
.project
.git
*/.git/*
.svn
_svn
.setting
.settings
.classpath
*/.idea/*
.myumldata
jobScheduler/
iotas-uml/
*/src/test/*
index/
*/.externalToolBuilders/*
svn_file_bak/



# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*


posted @ 2021-06-29 08:06  沉梦匠心  阅读(34)  评论(0编辑  收藏  举报