删除github上的文件夹

使用github的人都知道,在写自己的项目的时候,每次增加文件夹或者增加代码,我们只需要进行提交上传即可。github上的代码就会与本地同步.

同理,当我们想删除github上的某个文件夹时,我们只需要在本地手动删除文件夹,然后在进行上传提交,github上的文件夹就会自动的被删除。

git add .
git commit -m "del some file"
git push origin -u master
发布了89 篇原创文章 · 获赞 207 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/weixin_43729943/article/details/105349596