751 0 0 0
Last Updated : 2025-04-28 22:05:04
In this snippet I will teach you how to delete folder from local and remote
you can remove folder from local and then from the remote with this code below
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)