.gitignore (284B)
1 *.swp 2 demo 3 *.gcov 4 *.gcda 5 *.gcno 6 7 # Object files 8 *.o 9 *.ko 10 *.obj 11 *.elf 12 13 # Precompiled Headers 14 *.gch 15 *.pch 16 17 # Libraries 18 *.lib 19 *.a 20 *.la 21 *.lo 22 23 # Shared objects (inc. Windows DLLs) 24 *.dll 25 *.so 26 *.so.* 27 *.dylib 28 29 # Executables 30 *.exe 31 *.out 32 *.app 33 *.i*86 34 *.x86_64 35 *.hex 36 37 # Debug files 38 *.dSYM/ 39 *.su