-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitignore
53 lines (42 loc) · 821 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
# Ignore .deb files
*.deb
# Ignore various system files
.DS_Store
Thumbs.db
# Ignore compiled/byte-compiled files
*.pyc
*.pyo
*.pyd
__pycache__/
*.so
*.swp
*.swo
# Ignore all log files
*.log
# Ignore temporary files that might be created by editors or the system
*~
.#*
# Ignore executable files, you might want to comment this line if you're including executables
*.exe
*.dll
*.bin
# Ignore folder that might contain virtualenv or similar environments
venv/
env/
# Ignore the build directory
build/
# Ignore gitignore and README template files, comment out if you have custom templates in your repo
.gitignore-template
README-template.md
# Ignore script generated files
*.out
*.pid
# Ignore archive files
*.tar.gz
*.zip
*.rar
# Ignore user-specific files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace