.gitignore不会忽略某些文件夹中的文件[重复]

问题描述 投票:0回答:1

我有一个.gitignore文件。

我的一个声明是

** / bin / Debug / ** / obj / Debug /

但它仍在拾取这些文件

enter image description here

c# git asp.net-core gitignore
1个回答
1
投票

你需要告诉git首先从存储库中删除它。

git rm --cached bin/Debug
git rm --cached obj/Debug

然后提交更改。

© www.soinside.com 2019 - 2024. All rights reserved.