Coderwall
Ruby
Python
JavaScript
Front-End
Tools
iOS
More
Tips
Ruby
Python
JavaScript
Front-End
Tools
iOS
PHP
Android
.NET
Java
Jobs
Jobs
Sign In or Up
Joined March 2014
·
rabkins
Marcin Raba
Warsaw, Masovian District, Poland
·
·
·
0 Protips
1 Comments
Posted to
Delete All .git Files Under Directory
over 1 year ago
Another one using only find:
find <path_where> -type d -name '.git' -exec rm -rf {} \;
Achievements
1 Karma
0 Total ProTip Views
Interests & Skills
c
php
Python
MongoDB
Another one using only find: