Answers for "how to remove git from a project"

13

delete .git folder

rm -rf .git
Posted by: Guest on April-01-2020
4

how to remove git from project

rm -rf .git*
Posted by: Guest on March-29-2020
4

remove git tracking

/* Remove Git tracking from an entire folder/directory */

cd project-name // Navigate to the project directory
rm -rf .git // Remove git tracking
Posted by: Guest on April-30-2020
0

remove git from angular oproject

//Windows:
del /F /S /Q /A .git

rmdir .git
Posted by: Guest on October-23-2020
0

how to remove git from a project

rm -rf .git*
Posted by: Guest on October-03-2021

Code answers related to "how to remove git from a project"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language