.gitignore 142 B

12345678910111213141516
  1. # do not consider anything
  2. *
  3. # except for files and directories
  4. !*.*
  5. !*/
  6. !config
  7. # with the following exclusions
  8. *.m~
  9. *.DS_Store
  10. *._*
  11. *~*