.gitignore 364 B

123456789101112131415161718192021
  1. # Blacklist files/folders in same directory as the .gitignore file
  2. /*
  3. # Whitelist some files
  4. !.gitignore
  5. !README.md
  6. !config.org
  7. !README.org
  8. !init.el
  9. !bookmarks
  10. !diary
  11. # # Ignore all emacs backup files
  12. **/#*#
  13. # Whitelist directories
  14. # trailing "/" is optional for folders, may match file though.
  15. # "/" is NOT optional when followed by a *
  16. !lisp/
  17. !snippets.tar.*