git删除GitHub中的文件夹
$ git rm -r --cached 2016 # 删除2016文件夹
$ git commit -m 'delete2016' # 提交并添加操作说明
$ git push -u origin master # 将本次更改更新到github项目上去