123456789101112131415161718192021 |
- # Blacklist files/folders in same directory as the .gitignore file
- /*
- # Whitelist some files
- !.gitignore
- !README.md
- !config.org
- !README.org
- !init.el
- !bookmarks
- !diary
- # # Ignore all emacs backup files
- **/#*#
- # Whitelist directories
- # trailing "/" is optional for folders, may match file though.
- # "/" is NOT optional when followed by a *
- !lisp/
- !snippets.tar.*
|