Answers for "remove a folder from repository"

3

delete folder from github repository

git rm -r folder-name
git commit -m "Remove unwanteed folder"
git push
Posted by: Guest on April-23-2021
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
0

How to remove a directory from git repository?

sql
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)
Posted by: Guest on January-28-2022

Code answers related to "remove a folder from repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language