Remove GIT Vendor Tracking
A small script to wipe all Git remnants from a directory. This will delete all .git directories and .gitignore files.
find directory/ -type d -name .git -exec rm -rf {} ;
find directory/ -name .gitignore -exec rm {} ;
A small script to wipe all Git remnants from a directory. This will delete all .git directories and .gitignore files.
find directory/ -type d -name .git -exec rm -rf {} ;
find directory/ -name .gitignore -exec rm {} ;