gitignore不删除文件

这个问题在这里已经有了答案:

  • 忽略已经提交给Git仓库的文件[复制] 21个答案
  • 告诉git忽略符号链接6个答案

  • 你可以尝试下面的命令,

    git rm --cached 
    git add . 
    git commit -m "refreshed ignored files."
    

    .gitignore不会删除已经跟踪的文件,而是会影响在运行git add时默认跟踪哪些文件。 使用.gitignore忽略某些文件后,可能需要对已经跟踪的文件运行git rm --cached。


    符号链接必须首先删除并提交。

    step 1: add the gitignore
    step 2: delete all the symlinks
    step 3: commit/push
    

    从现在开始,他们不会出现

    链接地址: http://www.djcxy.com/p/23403.html

    上一篇: gitignore not removing files

    下一篇: .gitignore files not ignored when pulling remote changes