简体   繁体   中英

How do I remove a directory from github?

I have a folder in vendor/plugins/ that I deleted and committed as a delete in my github. But the folder still exists on github.

How do I remove it from github as well? This..may be a submodule.. I'm not entirely sure.

Try this:

git rm -r vendor/plugins
git commit -m "Your comment here"
git push -u origin master

First deletes your directory
Second makes your commit
Third push your changes

You could try git rm -rf vendor/plugins to recursively delete it. You will need to commit this again.

git rm -rf --cached $FILES

eg git rm --cached -r.idea

I have found this blog helpful when I wanted to remove some unnecessary hidden directories.

https://danielmiessler.com/blog/removing-files-from-a-git-repository-without-actually-deleting-them/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM