-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitignore
54 lines (41 loc) · 947 Bytes
/
.gitignore
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
53
# .gitignore defines files to ignore and remain untracked in Git
# Each line in a gitignore file specifies a pattern, eg. directory or file extension
# Git should not track binary artifacts such as images, libraries, executables, archive files etc.
# Until the team has mature processes, a Binary Artifacts Repository Manager is not in use.
# Therefore some binary artifacts are tracked in this Git repository
# Further .gitignore templates available at:
# https://github.com/github/gitignore
# macOS OS generated files
.DS_Store
._*
.Spotlight-V100
.Trashes
# Windows OS generated files #
ehthumbs.db
Thumbs.db
# Compressed Archives
# git has built-in compression
# *.7z
# *.dmg
# *.gz
# *.iso
# *.jar
# *.rar
# *.tar
# *.zip
# Binaries / Compiled source
# *.com
# *.class
# *.dll
# *.exe
# *.o
# *.so
# Logs and databases
# *.log
# *.sqlite
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# VSCode
.vscode