Skip to content

Instantly share code, notes, and snippets.

@probaldhar
Last active August 29, 2015 14:08
Show Gist options
  • Save probaldhar/7de1116a23bc200eeedf to your computer and use it in GitHub Desktop.
Save probaldhar/7de1116a23bc200eeedf to your computer and use it in GitHub Desktop.
Removing all hidden .* files from a folder
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