Answers for "delete a folder from git"

18

delete .git folder

rm -rf .git
Posted by: Guest on April-01-2020
1

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"
Posted by: Guest on March-21-2021
1

git - Remove folder

git rm -r test_dir
Posted by: Guest on July-06-2021
1

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
Posted by: Guest on September-07-2020
0

gremove folder from git

git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language