Skip to content

Commit 5f3e6a1

Browse files
committed
gitignore
1 parent 68bd906 commit 5f3e6a1

File tree

1 file changed

+188
-0
lines changed

1 file changed

+188
-0
lines changed

.gitignore

Lines changed: 188 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
# Created by https://www.gitignore.io
2+
3+
### CMake ###
4+
CMakeCache.txt
5+
CMakeFiles
6+
CMakeScripts
7+
Makefile
8+
cmake_install.cmake
9+
install_manifest.txt
10+
11+
12+
### Autotools ###
13+
# http://www.gnu.org/software/automake
14+
15+
Makefile.in
16+
17+
# http://www.gnu.org/software/autoconf
18+
19+
/autom4te.cache
20+
/aclocal.m4
21+
/compile
22+
/configure
23+
/depcomp
24+
/install-sh
25+
/missing
26+
/stamp-h1
27+
28+
### Emacs ###
29+
# -*- mode: gitignore; -*-
30+
*~
31+
\#*\#
32+
/.emacs.desktop
33+
/.emacs.desktop.lock
34+
*.elc
35+
auto-save-list
36+
tramp
37+
.\#*
38+
39+
# Org-mode
40+
.org-id-locations
41+
*_archive
42+
43+
# flymake-mode
44+
*_flymake.*
45+
46+
# eshell files
47+
/eshell/history
48+
/eshell/lastdir
49+
50+
# elpa packages
51+
/elpa/
52+
53+
# reftex files
54+
*.rel
55+
56+
# AUCTeX auto folder
57+
/auto/
58+
59+
# cask packages
60+
.cask/
61+
62+
63+
### vim ###
64+
[._]*.s[a-w][a-z]
65+
[._]s[a-w][a-z]
66+
*.un~
67+
Session.vim
68+
.netrwhist
69+
*~
70+
71+
72+
### C++ ###
73+
# Compiled Object files
74+
*.slo
75+
*.lo
76+
*.o
77+
*.obj
78+
79+
# Precompiled Headers
80+
*.gch
81+
*.pch
82+
83+
# Compiled Dynamic libraries
84+
*.so
85+
*.dylib
86+
*.dll
87+
88+
# Fortran module files
89+
*.mod
90+
91+
# Compiled Static libraries
92+
*.lai
93+
*.la
94+
*.a
95+
*.lib
96+
97+
# Executables
98+
*.exe
99+
*.out
100+
*.app
101+
102+
103+
### Autotools ###
104+
# http://www.gnu.org/software/automake
105+
106+
Makefile.in
107+
108+
# http://www.gnu.org/software/autoconf
109+
110+
/autom4te.cache
111+
/aclocal.m4
112+
/compile
113+
/configure
114+
/depcomp
115+
/install-sh
116+
/missing
117+
/stamp-h1
118+
119+
120+
### CMake ###
121+
CMakeCache.txt
122+
CMakeFiles
123+
Makefile
124+
cmake_install.cmake
125+
install_manifest.txt
126+
127+
128+
### Linux ###
129+
*~
130+
131+
# KDE directory preferences
132+
.directory
133+
134+
135+
### OSX ###
136+
.DS_Store
137+
.AppleDouble
138+
.LSOverride
139+
140+
# Icon must end with two \r
141+
Icon
142+
143+
144+
# Thumbnails
145+
._*
146+
147+
# Files that might appear on external disk
148+
.Spotlight-V100
149+
.Trashes
150+
151+
# Directories potentially created on remote AFP share
152+
.AppleDB
153+
.AppleDesktop
154+
Network Trash Folder
155+
Temporary Items
156+
.apdisk
157+
158+
159+
### Windows ###
160+
# Windows image file caches
161+
Thumbs.db
162+
ehthumbs.db
163+
164+
# Folder config file
165+
Desktop.ini
166+
167+
# Recycle Bin used on file shares
168+
$RECYCLE.BIN/
169+
170+
# Windows Installer files
171+
*.cab
172+
*.msi
173+
*.msm
174+
*.msp
175+
176+
# Windows shortcuts
177+
*.lnk
178+
179+
# manually added
180+
.waf*
181+
.dropbox
182+
.lock-*
183+
*.lib
184+
*.log
185+
build
186+
Makefile
187+
.deps/
188+
config.status

0 commit comments

Comments
 (0)