Answers for "how to delete a folderfrom github repository"

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
2

how to delete a folder in github

git rm -r my-folder
Posted by: Guest on March-28-2021

Code answers related to "how to delete a folderfrom github repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language