.gitignore 134 B

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