gitnore文件修改生效方法 Posted on 2019-05-08 Edited on 2024-03-13 本文首发于cartoon的博客 转载请注明出处:https://cartoonyu.github.io/cartoon-blog 当修改gitnore文件后,常常出现文件不生效的情况,是因为之前的修改已经提交到暂存区上了。解决方法 123git add . //防止已有修改还没到暂存区的情况git rm -r --cached . //清除暂存区记录git add . //提交修改记录到暂存区中 执行到第三步即能使gitnore文件生效,后续操作会按照gitnore规则执行 Post author: cartoon Yu Post link: https://cartoonyu.github.io/2019/05/08/git/gitnore文件修改生效方法/ Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.