Answers for "remove directories from git 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
0

remove directory from git

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 directories from git repository"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language