删除不应该提交的文件
我的项目目录中有一个 .gitignore 文件,并且我在文件中放置了以下条目,以免提交以下文件夹中的文件:
EStudyMongoDb.Integration.Test\
出于某种原因,Git 无论如何都将文件推送到存储库!
反正!现在我想删除那些已推送到存储库的文件,但我不想丢失对文件夹内文件的本地更改。我怎样才能做到这一点?
I have a .gitignore file in my project directory and I placed the following entry in the file to not to commit the files in the following folder:
EStudyMongoDb.Integration.Test\
For some reason Git pushed the files to repository anyway!
Anyway! now I want to remove those files that have been pushed to the repository but I don't want to loose my local changes to the files inside the folder. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
git rm --cached
从索引中删除文件,但不从工作副本中删除文件。然后,提交更改。Use
git rm --cached
to remove the files from the index but not from your working copy. Then, commit the changes.将 \ 替换为 / 或将其完全删除。
使用 git rm --cached EStudyMongoDb.Integration.Test 将其从索引中删除
Replace the \ with / or remove it completely.
Use git rm --cached EStudyMongoDb.Integration.Test to remove it from the index