I have a folder called "Server Project" that I want to delete from my git repository. I can't seem to get rid of this! How to remove it?
You can simply delete the folder locally and then click, for example:rm -rf foldergit add .git commit -a -m "removed folder"git push origin master
rm -rf folder
git add .
git commit -a -m "removed folder"
git push origin master