Created
May 9, 2015 07:10
-
-
Save blog1729/a40e428111659f5d2229 to your computer and use it in GitHub Desktop.
Git ignore for Haskell
This file contains hidden or 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
| # Ignore everything | |
| * | |
| # But not these files | |
| !.gitignore | |
| !*.hs | |
| # Even if they are in subdirectories | |
| !*/ |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to StackOverflow.