📅  最后修改于: 2023-12-03 14:49:17.542000             🧑  作者: Mango
在 github 存储库中删除文件夹是很常见的操作,下面为你介绍如何使用 Shell-Bash 命令行工具进行操作。
git clone <repository_url>
git checkout <branch_name>
git rm -r <folder_name>
git commit -m "delete folder <folder_name>"
git push origin <branch_name>
git push origin --delete <branch_name>
以上就是使用 Shell-Bash 删除 github 存储库中文件夹的步骤。当然,这只是其中的一种方式,具体操作还要根据各自的情况进行调整。