git学习笔记(4):IDEA中的环境准备、配置、提交、切换版本和分支、分支合并

一、环境准备
1.本地配置git。使其上传时忽略.idea和target目录等文件。

a.为什么需要忽略?
因为不参与服务器的部署运行

b.如何忽略
配置1个git.ignore文件,放在家目录(c盘/用户/你的用户id/)即可。

# Compiled class file
*.class

# 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*

.classpath
.project
.settings
target
.idea
*.iml

然后在家目录的.gitconfig增加以下内容
注意斜线是正斜线“/”(右shift旁边的键)

[core]
	excludesfile 

你可能感兴趣的:(git,idea)