ignore (559B)
1 # For emacs: 2 *~ 3 *.*~ 4 \#* 5 .\#* 6 7 # For vim: 8 *.swp 9 .*.sw[a-z] 10 *.un~ 11 Session.vim 12 .netrwhist 13 14 # Ignore tags (from etags and ctags) 15 TAGS 16 !TAGS/ 17 tags 18 !tags/ 19 20 # Logs and databases # 21 ###################### 22 *.log 23 *.cache 24 25 # OS generated files # 26 ###################### 27 .DS_Store? 28 .DS_Store 29 .CFUserTextEncoding 30 .Trash 31 .Xauthority 32 thumbs.db 33 Icon? 34 Thumbs.db 35 .cache 36 .pid 37 .sock 38 39 # Code stuffs # 40 ############### 41 .svn 42 .git 43 .swp 44 .idea 45 .*.swp 46 *~ 47 .tags 48 tags 49 .sass-cache 50 tmp 51 .codekit-cache 52 config.codekit 53 54 # Compiled thangs # 55 ################### 56 *.class 57 *.exe 58 *.o 59 *.so 60 *.dll 61 *.pyc