Answers for "linux delete .git directory"

0

remove directory from git

git rm -r --cached myFolder
Posted by: Guest on January-12-2022
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 "Shell/Bash"

Browse Popular Code Answers by Language