- 此问题在此处已有答案**:
Applying .gitignore to committed files(10个答案)
What does recursive mean in relation to the git rm -r [filename](2个答案)
21小时前关门了。
所以我不小心把". vscode"文件夹推到了github存储库中。我想把它从github中删除。
我做了一个gitignore文件,并添加了名称". vscode",这样它就不会被跟踪,我还尝试使用git rm .vscode --cached
命令删除它,它说fatal: not removing '.vscode' recursively without -r
现在我不明白它说什么。我的问题是简单地如何删除. vscode文件夹从我的github存储库。我尝试在互联网上搜索,但找不到任何东西。
1条答案
按热度按时间6ie5vjzr1#
1.从
.gitignore
中删除.vscode
1.在repository目录中,通过在终端中运行以下命令,从本地repository中删除
.vscode
:rm -rf .vscode
1.提交此更改并推送到github
1.将
.vscode
返回到.gitignore
,提交更改,并将其推送到github。