.gitignore使用记录 发表于 2020-01-23 更新于 2023-05-03 阅读次数: 本文字数: 285 阅读时长 ≈ 1 分钟 1234567891011121314使用.gitignore文件删除掉已经提交的文件 顺序依次执行如下命令:First commit any outstanding code changes, and then, run this command:git rm -r --cached .This removes any changed files from the index(staging area), then just run:git add .Commit it:git commit -m ".gitignore is now working"最后提交到远程仓库,会发现.gitignore文件起作用了。 欢迎您扫一扫上面的微信公众号,订阅我的博客! 打赏 支持作者 本文作者: iBoy 本文链接: https://blog.iboy.tech/post/29976.html 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!