Forked from justinfrench/Recursively add .gitignore files to empty dirs
Created
January 26, 2012 23:20
-
-
Save alkos333/1685784 to your computer and use it in GitHub Desktop.
undefined
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
# Recursively add a .gitignore file to all directories | |
# in the working directory which are empty and don't | |
# start with a dot. Helpful for tracking empty dirs | |
# in a git repository. | |
find . -type d -regex ``./[^.].*'' -empty -exec touch {}"/.gitignore" \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, awesome