删除不应该提交的文件

发布于 2024-09-02 04:21:11 字数 215 浏览 4 评论 0原文

我的项目目录中有一个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不打扰别人 2024-09-09 04:21:11

使用 git rm --cached 从索引中删除文件,但从工作副本中删除文件。然后,提交更改。

Use git rm --cached to remove the files from the index but not from your working copy. Then, commit the changes.

南街九尾狐 2024-09-09 04:21:11

将 \ 替换为 / 或将其完全删除。
使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文