Answers for "git how to remove the inner folder that have another repo"

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

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

Code answers related to "git how to remove the inner folder that have another repo"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language