seouri (owner)

Revisions

gist: 66921 Download_button fork
public
Public Clone URL: git://gist.github.com/66921.git
Embed All Files: show embed
empty_gitignore.sh #
1
2
# touching a .gitignore file into all the empty subdirectories except the .git directory itself
find . \( -type d -empty \) -and \( -not -regex ./\.git.* \) -exec touch {}/.gitignore \;