.gitignore 失效問題解決

☆磊☆發表於2014-05-28

對於Git,已經跟蹤的檔案,再加入到.gitignore中,會使忽略失效。使用下面3個命令使它重新生效

git rm -r --cached .
git add .
git commit -m ".gitignore is now working."

  完成之後push到你的程式碼庫即可。

相關文章