git删除远程文件夹

git rm -r -n --cached "bin/" //-n:加上这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。

git rm -r --cached "bin/" //最终执行命令.

git commit -m" remove bin folder all file out of control" //提交

git push origin master //提交到远程服务器

本文来自 :https://blog.csdn.net/u014290233/article/details/52922688?utm_source=copy

上一篇:替换 window.location当中的某个参数的值(而其它值不变)JS代码


下一篇:hdu1561 The more, The Better (树形dp+背包)