Remove git from folder

How do you remove the version tracking from your project cloned from git?


rm -rf .git should suffice. 

That will remove away all Git-related information.

Then you can create a clone from new project and copy. 

git clone https://username@bitbucket.org/onlinesolutionsgroup/blogger-ui.git

Comments