File: .gitignore

package info (click to toggle)
mariadb-connector-python 1.1.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 948 kB
  • sloc: python: 6,288; ansic: 4,973; sh: 23; makefile: 14
file content (52 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Keep empty directories:
# Keep empty directories: >> .gitignore/.git*

# Compiled Static libraries
*.lib
*.a
*.la
*.lai
*.lo

# Compiled Dynamic libraries
*.so
*.so.*
*.dylib
*.dll

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

*.dgcov
.*.swp
.gdb_history

# Build/Dist
build/
dist/

# Cache
__pycache__

#VS files/directories
*.vcxproj
*.filters
*.user
ipch
*.sln
*.suo
*.sdf
Win32
x64
*.dir
Debug
Release
RelWithDebInfo

#vim backups
*.*~