美文网首页
git添加忽略文件后清除本地缓存

git添加忽略文件后清除本地缓存

作者: 禾口王No_1 | 来源:发表于2018-10-10 18:38 被阅读8次

    1. 为正在使用的项目添加git忽略文件

    因为添加之后,不清空缓存,忽略文件会不生效,所以做以下三步

    git rm -r --cached .
    git add .
    git commit -m 'update .gitignore'
    

    注意 git rm -r --cached . 会清空暂存,如果有未提交的代码,先贮存或者提交

    相关文章

      网友评论

          本文标题:git添加忽略文件后清除本地缓存

          本文链接:https://www.haomeiwen.com/subject/nfjmaftx.html