接手别人的项目的时候,总是发现gitignore
并没有设置或者设置的有问题,所以需要对gitignore
进行添加或更新。
1.为避免冲突,先拉取下远程仓库
1 | git pull |
2.清除本地目录下的缓存
1 | git rm -r --cached . |
3.新建或更新.gitignore
文件
在项目的根目录下创建.gitignore
文件,并添加相应的过滤规则。
1 | vim .gitignore |
这里推荐一个网站:gitignore.io,可以根据你项目的需要获取
gitignore
或者也可以去 https://github.com/github/gitignore 上找对应的
gitignore
4.再次添加所有文件到本地仓库缓存中
1 | git add . |
5.添加commit
1 | git commit -m "add gitignore" |
6.提交到远程仓库
1 | git push |