remove folder from git repository code example

Example 1: git remove folder remotely

git rm -r --cached <folder>
git commit -m "Removed Folder"
git push origin master

Example 2: how to remove git from a folder

rm -rf .git

Example 3: git remove folder from repository

# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"

Example 4: How to delete multiples files in Github

In the command-line, navigate to your local repository.
Ensure you are in the default branch:
git checkout master
The rm -r command will recursively remove your folder:
git rm -r folder-name
Commit the change:
git commit -m “Remove duplicated directory”
Push the change to your remote repository:
git push

Example 5: gremove folder from git

git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master

Tags:

Sql Example