git提交时忽略指定文件

1、提交根目录下,进入git bash中输入”touch .gitignore” 新建一个该该后缀的文件。
git提交时忽略指定文件_第1张图片
2、文件中输入要忽略的文件或目录信息

##ignore this file##
/target/ 

.classpath
.project
.settings      
 ##filter databfile、sln file##
*.mdb  
*.ldb  
*.sln    
##class file##
*.com  
*.class  
*.dll  
*.exe  
*.o  
*.so  
# compression file
*.7z  
*.dmg  
*.gz  
*.iso  
*.jar  
*.rar  
*.tar  
*.zip  
*.via
*.tmp
*.err 
# OS generated files #  
.DS_Store  
.DS_Store?  
._*  
.Spotlight-V100  
.Trashes  
Icon?  
ehthumbs.db  
Thumbs.db  

或选择在git提供的文件中添加:https://github.com/github/gitignore
3、此时,在.gitignore所在目录及子目录操作时就会加载该配置。
git提交时忽略指定文件_第2张图片
git提交时忽略指定文件_第3张图片
git提交时忽略指定文件_第4张图片

你可能感兴趣的:(Git)