Answers for "delete git repository from directory command line"

30

delete git repository command line

rm -rf .git
Posted by: Guest on April-01-2020
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 "delete git repository from directory command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language