Skip to content

Commit 143e805

Browse files
author
Benjamin H C Carr
committed
add .git ignore with full disregards and project specific
1 parent 7a8f089 commit 143e805

File tree

1 file changed

+136
-0
lines changed

1 file changed

+136
-0
lines changed

.gitignore

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
# Project #
2+
###########
3+
mycroft-qtapplication.pro.use*
4+
5+
# Prerequisites #
6+
#################
7+
*.d
8+
9+
# Object files #
10+
################
11+
*.o
12+
*.ko
13+
*.obj
14+
*.elf
15+
16+
# Linker output #
17+
#################
18+
*.ilk
19+
*.map
20+
*.exp
21+
22+
# Precompiled Headers #
23+
#######################
24+
*.gch
25+
*.pch
26+
27+
# Libraries #
28+
#############
29+
*.lib
30+
*.a
31+
*.la
32+
*.lo
33+
34+
# Shared objects (inc. Windows DLLs) #
35+
######################################
36+
*.dll
37+
*.so
38+
*.so.*
39+
*.dylib
40+
41+
# Executables #
42+
###############
43+
*.exe
44+
*.out
45+
*.app
46+
*.i*86
47+
*.x86_64
48+
*.hex
49+
50+
# Debug files #
51+
###############
52+
*.dSYM/
53+
*.su
54+
*.idb
55+
*.pdb
56+
57+
# Packages #
58+
############
59+
# it's better to unpack these files and commit the raw source
60+
# git has its own built in compression methods
61+
*.7z
62+
*.dmg
63+
*.gz
64+
*.iso
65+
*.jar
66+
*.rar
67+
*.tar
68+
*.zip
69+
*.AppImage
70+
71+
# Logs and databases #
72+
######################
73+
*.log
74+
*.sql
75+
*.sqlite
76+
77+
# OS generated files #
78+
######################
79+
80+
# OSX | macOS #
81+
.DS_Store
82+
.DS_Store?
83+
._*
84+
.AppleDouble
85+
.LSOverride
86+
.DocumentRevisions-V100
87+
.fseventsd
88+
.Spotlight-V100
89+
.TemporaryItems
90+
.Trashes
91+
.VolumeIcon.icns
92+
.com.apple.timemachine.donotpresent
93+
.AppleDB
94+
.AppleDesktop
95+
Network Trash Folder
96+
Temporary Items
97+
.apdisk
98+
99+
# Windows #
100+
.db
101+
ehthumbs.db
102+
ehthumbs_vista.db
103+
# Folder config file
104+
Desktop.ini
105+
# Recycle Bin used on file shares
106+
$RECYCLE.BIN/
107+
# Windows shortcuts
108+
*.lnkhumbs.db
109+
110+
# Miscellaneous #
111+
#################
112+
*.orig
113+
*.rej
114+
115+
# EMACS #
116+
#########
117+
*~
118+
\#*\#
119+
/.emacs.desktop
120+
/.emacs.desktop.lock
121+
*.elc
122+
auto-save-list
123+
tramp
124+
.\#*
125+
126+
# Vim #
127+
#######
128+
[._]*.s[a-v][a-z]
129+
[._]*.sw[a-p]
130+
[._]s[a-v][a-z]
131+
[._]sw[a-p]
132+
# session
133+
Session.vim
134+
# temporary
135+
.netrwhist
136+
*~

0 commit comments

Comments
 (0)