git: do not track vim swo temp file.
[dabba.git] / .gitignore
blobb18c970c1c212a0da30e4792d80b04d35393b5b4
1 # Object files
2 *.o
4 # Libraries
5 *.lib
6 *.a
8 # Shared objects (inc. Windows DLLs)
9 *.dll
10 *.so
11 *.so.*
12 *.dylib
14 # Executables
15 *.exe
16 *.out
17 *.app
19 # Cmake files
20 CMakeCache.txt
21 CMakeFiles
22 Makefile
23 cmake_install.cmake
24 install_manifest.txt
26 # vim swp
27 *.swp
28 *.swo
30 # patch files
31 *.patch
32 *.orig
33 *.rej
35 # Netbeans files
36 *.*~
37 nbproject/
39 # build directory
40 build/