Last Updated: February 25, 2016
·
911
· romsssss

Remove .git folders from repository

If you need to clean a local repository from all the .git folders, just use the following command :

find . -name ".git" -type d -exec rm -rf {} \;