Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save billykong/71a5f188c0cc6ec785e5205df3ecaa89 to your computer and use it in GitHub Desktop.
Save billykong/71a5f188c0cc6ec785e5205df3ecaa89 to your computer and use it in GitHub Desktop.

How to .gitignore Everything in Folder Recursively Except for Specific File Types

*
!*/
!.gitignore
!**/**/*.md
!**/**/*.htm*

The above .gitignore content ignore everything in the folder and subfolder execpt for the markdown .md htm or html files .htm*.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment