/ .gitignore
.gitignore
1 # This file is used to ignore files which are generated 2 # ---------------------------------------------------------------------------- 3 4 *~ 5 *.autosave 6 *.a 7 *.core 8 *.moc 9 *.o 10 *.obj 11 *.orig 12 *.rej 13 *.so 14 *.so.* 15 *_pch.h.cpp 16 *_resource.rc 17 *.qm 18 .#* 19 *.*# 20 core 21 !core/ 22 tags 23 .DS_Store 24 .directory 25 *.debug 26 Makefile* 27 *.prl 28 *.app 29 moc_*.cpp 30 ui_*.h 31 qrc_*.cpp 32 *.qmlc 33 Thumbs.db 34 *.res 35 *.rc 36 /.qmake.cache 37 /.qmake.stash 38 39 # qtcreator generated files 40 *.pro.user* 41 42 # qtcreator shadow builds 43 build-SortFilterProxyModel-* 44 45 # xemacs temporary files 46 *.flc 47 48 # Vim temporary files 49 .*.swp 50 51 # Visual Studio generated files 52 *.ib_pdb_index 53 *.idb 54 *.ilk 55 *.pdb 56 *.sln 57 *.suo 58 *.vcproj 59 *vcproj.*.*.user 60 *.ncb 61 *.sdf 62 *.opensdf 63 *.vcxproj 64 *vcxproj.* 65 66 # MinGW generated files 67 *.Debug 68 *.Release 69 70 # Python byte code 71 *.pyc 72 73 # Binaries 74 # -------- 75 *.dll 76 *.exe 77 78 # Others 79 build/ 80 .cache