Skip to content

Commit fe6b10c

Browse files
committed
add gitignore
1 parent d25c68a commit fe6b10c

1 file changed

Lines changed: 116 additions & 0 deletions

File tree

.gitignore

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
# Specify filepatterns you want git to ignore.
2+
3+
### Windows ###
4+
# Windows thumbnail cache files
5+
Thumbs.db
6+
ehthumbs.db
7+
ehthumbs_vista.db
8+
9+
# Dump file
10+
*.stackdump
11+
12+
# Folder config file
13+
[Dd]esktop.ini
14+
15+
# Recycle Bin used on file shares
16+
$RECYCLE.BIN/
17+
18+
# Windows Installer files
19+
*.cab
20+
*.msi
21+
*.msix
22+
*.msm
23+
*.msp
24+
25+
# Windows shortcuts
26+
*.lnk
27+
28+
### Git ###
29+
# Created by git for backups. To disable backups in Git:
30+
# $ git config --global mergetool.keepBackup false
31+
*.orig
32+
33+
# Created by git when using merge tools for conflicts
34+
*.BACKUP.*
35+
*.BASE.*
36+
*.LOCAL.*
37+
*.REMOTE.*
38+
*_BACKUP_*.txt
39+
*_BASE_*.txt
40+
*_LOCAL_*.txt
41+
*_REMOTE_*.txt
42+
43+
### Emacs ###
44+
# -*- mode: gitignore; -*-
45+
*~
46+
\#*\#
47+
/.emacs.desktop
48+
/.emacs.desktop.lock
49+
*.elc
50+
auto-save-list
51+
tramp
52+
.\#*
53+
54+
# Org-mode
55+
.org-id-locations
56+
*_archive
57+
58+
# flymake-mode
59+
*_flymake.*
60+
61+
# eshell files
62+
/eshell/history
63+
/eshell/lastdir
64+
65+
# elpa packages
66+
/elpa/
67+
68+
# reftex files
69+
*.rel
70+
71+
# AUCTeX auto folder
72+
/auto/
73+
74+
# cask packages
75+
.cask/
76+
dist/
77+
78+
# Flycheck
79+
flycheck_*.el
80+
81+
# server auth directory
82+
/server/
83+
84+
# projectiles files
85+
.projectile
86+
87+
# directory configuration
88+
.dir-locals.el
89+
90+
# network security
91+
/network-security.data
92+
93+
### Git ###
94+
# Created by git for backups. To disable backups in Git:
95+
# $ git config --global mergetool.keepBackup false
96+
*.orig
97+
98+
# Created by git when using merge tools for conflicts
99+
*.BACKUP.*
100+
*.BASE.*
101+
*.LOCAL.*
102+
*.REMOTE.*
103+
*_BACKUP_*.txt
104+
*_BASE_*.txt
105+
*_LOCAL_*.txt
106+
*_REMOTE_*.txt
107+
108+
### Project ###
109+
Build/build/
110+
**/Build/build/
111+
112+
__pycache__/
113+
**/__pycache__/
114+
115+
Dev/
116+
*.dev.py

0 commit comments

Comments
 (0)