Skip to content

Commit c924167

Browse files
authored
Update .gitignore
1 parent 86669ba commit c924167

File tree

1 file changed

+238
-12
lines changed

1 file changed

+238
-12
lines changed

.gitignore

+238-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
1-
*.tar.gz
2-
3-
1+
build/
2+
debug/
3+
release/
4+
*.o
45
src/*.exe
56
src/litedoged
67
src/build.h
78
src/test_litedoge
89
src/litedoge-qt
910
src/test/test_litedoge
11+
object_script.litedoge-qt.*
1012
src/qt/test/test_litedoge-qt
13+
litedoge-qt
14+
Bitcoin-Qt.app
15+
litedoge-QT.app
16+
litedoged
1117

1218
# autoreconf
13-
Makefile.in
1419
src/qt/forms/ui_*.h
1520
.deps
1621
.dirstamp
22+
*.tar.gz
1723
.libs
1824
.*.swp
1925
*.*~*
@@ -32,7 +38,6 @@ config.log
3238
config.status
3339
configure
3440
libtool
35-
*.log
3641
*.trs
3742
*.dmg
3843

@@ -43,13 +48,7 @@ libtool
4348
*.lo
4449
*.la
4550

46-
#compilation and Qt preprocessor part
47-
*.qm
48-
Makefile
49-
litedoge-qt
50-
Bitcoin-Qt.app
51-
src/.github/workflows/build.yml
52-
src/.github/workflows/stale.yml
51+
5352

5453
# Unit-tests
5554
Makefile.test
@@ -76,3 +75,230 @@ win32-build
7675
!src/leveldb/Makefile
7776

7877
/doc/doxygen/
78+
79+
#################
80+
## Eclipse
81+
#################
82+
83+
*.pydevproject
84+
.project
85+
.metadata
86+
bin/
87+
tmp/
88+
*.tmp
89+
*.bak
90+
*.swp
91+
*~.nib
92+
local.properties
93+
.classpath
94+
.settings/
95+
.loadpath
96+
97+
# External tool builders
98+
.externalToolBuilders/
99+
100+
# Locally stored "Eclipse launch configurations"
101+
*.launch
102+
103+
# CDT-specific
104+
.cproject
105+
106+
# PDT-specific
107+
.buildpath
108+
109+
110+
#################
111+
## Visual Studio
112+
#################
113+
114+
## Ignore Visual Studio temporary files, build results, and
115+
## files generated by popular Visual Studio add-ons.
116+
117+
# User-specific files
118+
*.suo
119+
*.user
120+
*.sln.docstates
121+
122+
# Build results
123+
124+
[Dd]ebug/
125+
[Rr]elease/
126+
x64/
127+
build/
128+
[Bb]in/
129+
[Oo]bj/
130+
131+
# MSTest test Results
132+
[Tt]est[Rr]esult*/
133+
[Bb]uild[Ll]og.*
134+
135+
*_i.c
136+
*_p.c
137+
*.ilk
138+
*.meta
139+
*.obj
140+
*.pch
141+
*.pdb
142+
*.pgc
143+
*.pgd
144+
*.rsp
145+
*.sbr
146+
*.tlb
147+
*.tli
148+
*.tlh
149+
*.tmp
150+
*.tmp_proj
151+
*.log
152+
*.vspscc
153+
*.vssscc
154+
.builds
155+
*.pidb
156+
*.log
157+
*.scc
158+
159+
# Visual C++ cache files
160+
ipch/
161+
*.aps
162+
*.ncb
163+
*.opensdf
164+
*.sdf
165+
*.cachefile
166+
167+
# Visual Studio profiler
168+
*.psess
169+
*.vsp
170+
*.vspx
171+
172+
# Guidance Automation Toolkit
173+
*.gpState
174+
175+
# ReSharper is a .NET coding add-in
176+
_ReSharper*/
177+
*.[Rr]e[Ss]harper
178+
179+
# TeamCity is a build add-in
180+
_TeamCity*
181+
182+
# DotCover is a Code Coverage Tool
183+
*.dotCover
184+
185+
# NCrunch
186+
*.ncrunch*
187+
.*crunch*.local.xml
188+
189+
# Installshield output folder
190+
[Ee]xpress/
191+
192+
# DocProject is a documentation generator add-in
193+
DocProject/buildhelp/
194+
DocProject/Help/*.HxT
195+
DocProject/Help/*.HxC
196+
DocProject/Help/*.hhc
197+
DocProject/Help/*.hhk
198+
DocProject/Help/*.hhp
199+
DocProject/Help/Html2
200+
DocProject/Help/html
201+
202+
# Click-Once directory
203+
publish/
204+
205+
# Publish Web Output
206+
*.Publish.xml
207+
*.pubxml
208+
209+
# NuGet Packages Directory
210+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
211+
#packages/
212+
213+
# Windows Azure Build Output
214+
csx
215+
*.build.csdef
216+
217+
# Windows Store app package directory
218+
AppPackages/
219+
220+
# Others
221+
sql/
222+
*.Cache
223+
ClientBin/
224+
[Ss]tyle[Cc]op.*
225+
~$*
226+
*~
227+
*.dbmdl
228+
*.[Pp]ublish.xml
229+
*.pfx
230+
*.publishsettings
231+
232+
# RIA/Silverlight projects
233+
Generated_Code/
234+
235+
# Backup & report files from converting an old project file to a newer
236+
# Visual Studio version. Backup files are not needed, because we have git ;-)
237+
_UpgradeReport_Files/
238+
Backup*/
239+
UpgradeLog*.XML
240+
UpgradeLog*.htm
241+
242+
# SQL Server files
243+
App_Data/*.mdf
244+
App_Data/*.ldf
245+
246+
#############
247+
## Windows detritus
248+
#############
249+
250+
# Windows image file caches
251+
Thumbs.db
252+
ehthumbs.db
253+
254+
# Folder config file
255+
Desktop.ini
256+
257+
# Recycle Bin used on file shares
258+
$RECYCLE.BIN/
259+
260+
# Mac crap
261+
.DS_Store
262+
263+
264+
#############
265+
## Python
266+
#############
267+
268+
*.py[co]
269+
270+
# Packages
271+
*.egg
272+
*.egg-info
273+
dist/
274+
build/
275+
eggs/
276+
parts/
277+
var/
278+
sdist/
279+
develop-eggs/
280+
.installed.cfg
281+
282+
# Installer logs
283+
pip-log.txt
284+
285+
# Unit test / coverage reports
286+
.coverage
287+
.tox
288+
289+
#Translations
290+
*.mo
291+
292+
#compilation and Qt preprocessor part
293+
*.qm
294+
src/.github/workflows/build.yml
295+
src/.github/workflows/stale.yml
296+
.mr.developer.cfg
297+
.qmake.stash
298+
Makefile.in
299+
Makefile
300+
Makefile.Debug
301+
Makefile.Release
302+
303+
upstream/patches/done.db-4.8.30.NC
304+
/upstream/ssl

0 commit comments

Comments
 (0)