how to remove remote directory in git code example
Example 1: remove remote git
# The example will remove the github remote.
# Note that the command will not delete the repository,
# just the local reference.
git remote rm origin
Example 2: remove folders from remote git
git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master