Last active
August 29, 2015 14:08
-
-
Save probaldhar/7de1116a23bc200eeedf to your computer and use it in GitHub Desktop.
Removing all hidden .* files from a folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Navigate go that folder with terminal and hit the command | |
find . -name '.*' -type f -delete | |
Delete all .git file from a folder - navigate to that folder from the terminal and then hit the command | |
rm -rf .git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment