赞
踩
Git如何忽略已经上传的文件或文件夹?
背景:使用IDEA新建项目,有时候会不小心将.idea文件夹上传上去,由于缓存的存在,之后再在.gitignore中添加这个文件夹就无效了,需要清除掉缓存.gitignore才会生效
、 git pull
2、git rm -r --cached 删除的文件名
3、git commit -m ‘描述’
4、git push
5、修改 .gitingnore 将需要忽略的文件添加进去
往后再 git add . git commit -m git push 一遍,就OK啦
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。