TortoiseGit:添加以忽略已提交的 gen 和 bin 文件夹



如何使用TortoiseGit添加忽略已提交的gen和bin文件夹列表?

对于取消跟踪 + 忽略文件,您可以执行以下操作:

$ git rm -r --cached gen/ bin/
$ echo "gen/" >> .gitignore
$ echo "bin/" >> .gitignore

git rm --cached从索引中删除文件,而不更改工作副本中的文件。所以现在 git 不会跟踪它,但你仍然在本地文件夹中有它。

自己解决了:

  1. 将文件夹添加到 .gitignore

  2. 删除这些文件夹

  3. 提交 , 推送

它有效。

使用 TortoiseGit 对每个项目执行以下操作:

1. Right click on item -> TortoiseGit -> Delete and Add to ignore list
2. Select "Ignore item resursively" for Ignore Type. Select ".gitignore in the repository root" for Ignore File or just make it your choice.
3. Commit item. Commit .gitignore file

相关内容

  • 没有找到相关文章

最新更新