如何删除github存储库中不必要的文件夹?

时间:2019-11-30 19:26:04

标签: github

如何删除github存储库中不必要的文件夹?以下是我需要从其中删除文件夹的github存储库:https://github.com/tux-superman/VitekSky

2 个答案:

答案 0 :(得分:1)

并非完全是文件夹,而是 gitlinks (特殊16000 entry in the index):简单的SHA1条目,引用了另一个存储库的根文件夹哈希。

对于您而言,由于没有与所述文件夹相关联的.gitmodules,因此您需要做的只是:

git rm aFolder # no trailing /
git commit -m "remove aFolder entry"
git push

答案 1 :(得分:0)

使用git rm:

git rm file1.txt

git commit -m“删除file1.txt”

但是,如果您只想从Git存储库中删除文件而不是从文件系统中删除它,请使用:

git rm --cached file1.txt

git commit -m“删除file1.txt”

然后将更改推送到远程仓库

git push origin branch_name