Skip to content

Instantly share code, notes, and snippets.

@mcalhoun
Created October 28, 2015 22:20
Show Gist options
  • Save mcalhoun/3d16936544b269db4317 to your computer and use it in GitHub Desktop.
Save mcalhoun/3d16936544b269db4317 to your computer and use it in GitHub Desktop.
Create .gitkeep files recursively in all empty directories
find . -type d -empty -not -path "./.git/*" -exec touch '{}'/.gitkeep \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment