Git的非常见使用

git删除GitHub中的文件夹

$ git rm -r --cached 2016 # 删除2016文件夹

$ git commit -m 'delete2016' # 提交并添加操作说明

$ git push -u origin master # 将本次更改更新到github项目上去

原文地址:https://www.cnblogs.com/guohaoyu110/p/11211412.html