📌  相关文章
📜  如何在 Github 中删除多个文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:38.096000             🧑  作者: Mango

代码示例1
In the command-line, navigate to your local repository.
Ensure you are in the default branch:
git checkout master
The rm -r command will recursively remove your folder:
git rm -r folder-name
Commit the change:
git commit -m “Remove duplicated directory”
Push the change to your remote repository:
git push