eclipse 提交git/svn忽略文件以及多项目忽略文件
- 1.在主项目文件夹下面创建.gitignore文件内容如下
.metadata/
.recommenders/
**/target/
**/.classpath
**/.project
**/.settings
.idea/*
**/out/
**.iml
**.DS_Store
忽略掉工程文件,以及.class文件
- 2.如果添加了.gitignore还是没有作用那是因为你的项目已经提交到仓库了,这个时候需要清除仓库的数据
// 清除仓库的所有的数据
git rm -r --cached .
// 然后添加
git add .
// 最后提交本地
git commit -m 'update .gitignore'
// 与远程同步
简书关注coderYJ
微博关注coderYJ
微信公众号关注coderYJ
网友评论