5
Q:

remove folders from remote git

git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
0
rm -rf .git
0
git rm -r --cached myFolder
0
git rm -r one-of-the-directories // This deletes from filesystem
git commit . -m "Remove duplicated directory"
git push origin <your-git-branch> (typically 'master', but not always)
0
This code will remove a git folder
-1

New to Communities?

Join the community