aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2015-03-11 18:15:40 -0700
committerTimothy Gu <timothygu99@gmail.com>2015-03-11 18:15:40 -0700
commitecaf0e90b26fafc12be28ec6c10a05aa67291254 (patch)
tree2a8bda3b2f234be89fd12b494db62c67cd694085
parent9e5c2eb2168628a70ed2bbe3564e565f78f0626b (diff)
downloaddlfcn-win32-ecaf0e90b26fafc12be28ec6c10a05aa67291254.tar.gz
dlfcn-win32-ecaf0e90b26fafc12be28ec6c10a05aa67291254.tar.bz2
dlfcn-win32-ecaf0e90b26fafc12be28ec6c10a05aa67291254.zip
Add .gitignore
-rw-r--r--.gitignore238
1 files changed, 238 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d1cf506
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,238 @@
1# Object files
2*.o
3*.ko
4*.obj
5*.elf
6
7# Precompiled Headers
8*.gch
9*.pch
10
11# Libraries
12*.lib
13*.a
14*.la
15*.lo
16
17# Shared objects (inc. Windows DLLs)
18*.dll
19*.so
20*.so.*
21*.dylib
22
23# Executables
24*.exe
25*.out
26*.app
27*.i*86
28*.x86_64
29*.hex
30
31# CMake
32CMakeCache.txt
33CMakeFiles
34Makefile
35cmake_install.cmake
36install_manifest.txt
37
38*.sln
39*.vcproj*
40*.vcxproj*
41CTestTestfile.cmake
42
43## Ignore Visual Studio temporary files, build results, and
44## files generated by popular Visual Studio add-ons.
45
46# User-specific files
47*.suo
48*.user
49*.userosscache
50*.sln.docstates
51
52# User-specific files (MonoDevelop/Xamarin Studio)
53*.userprefs
54
55# Build results
56[Dd]ebug/
57[Dd]ebugPublic/
58[Rr]elease/
59[Rr]eleases/
60x64/
61x86/
62build/
63bld/
64[Bb]in/
65[Oo]bj/
66
67# Visual Studo 2015 cache/options directory
68.vs/
69
70# MSTest test Results
71[Tt]est[Rr]esult*/
72[Bb]uild[Ll]og.*
73
74# NUNIT
75*.VisualState.xml
76TestResult.xml
77
78# Build Results of an ATL Project
79[Dd]ebugPS/
80[Rr]eleasePS/
81dlldata.c
82
83*_i.c
84*_p.c
85*_i.h
86*.ilk
87*.meta
88*.obj
89*.pch
90*.pdb
91*.pgc
92*.pgd
93*.rsp
94*.sbr
95*.tlb
96*.tli
97*.tlh
98*.tmp
99*.tmp_proj
100*.log
101*.vspscc
102*.vssscc
103.builds
104*.pidb
105*.svclog
106*.scc
107
108# Chutzpah Test files
109_Chutzpah*
110
111# Visual C++ cache files
112ipch/
113*.aps
114*.ncb
115*.opensdf
116*.sdf
117*.cachefile
118
119# Visual Studio profiler
120*.psess
121*.vsp
122*.vspx
123
124# TFS 2012 Local Workspace
125$tf/
126
127# Guidance Automation Toolkit
128*.gpState
129
130# ReSharper is a .NET coding add-in
131_ReSharper*/
132*.[Rr]e[Ss]harper
133*.DotSettings.user
134
135# JustCode is a .NET coding addin-in
136.JustCode
137
138# TeamCity is a build add-in
139_TeamCity*
140
141# DotCover is a Code Coverage Tool
142*.dotCover
143
144# NCrunch
145_NCrunch_*
146.*crunch*.local.xml
147
148# MightyMoose
149*.mm.*
150AutoTest.Net/
151
152# Web workbench (sass)
153.sass-cache/
154
155# Installshield output folder
156[Ee]xpress/
157
158# DocProject is a documentation generator add-in
159DocProject/buildhelp/
160DocProject/Help/*.HxT
161DocProject/Help/*.HxC
162DocProject/Help/*.hhc
163DocProject/Help/*.hhk
164DocProject/Help/*.hhp
165DocProject/Help/Html2
166DocProject/Help/html
167
168# Click-Once directory
169publish/
170
171# Publish Web Output
172*.[Pp]ublish.xml
173*.azurePubxml
174# TODO: Comment the next line if you want to checkin your web deploy settings
175# but database connection strings (with potential passwords) will be unencrypted
176*.pubxml
177*.publishproj
178
179# NuGet Packages
180*.nupkg
181# The packages folder can be ignored because of Package Restore
182**/packages/*
183# except build/, which is used as an MSBuild target.
184!**/packages/build/
185# Uncomment if necessary however generally it will be regenerated when needed
186#!**/packages/repositories.config
187
188# Windows Azure Build Output
189csx/
190*.build.csdef
191
192# Windows Store app package directory
193AppPackages/
194
195# Others
196*.[Cc]ache
197ClientBin/
198[Ss]tyle[Cc]op.*
199~$*
200*~
201*.dbmdl
202*.dbproj.schemaview
203*.pfx
204*.publishsettings
205node_modules/
206bower_components/
207
208# RIA/Silverlight projects
209Generated_Code/
210
211# Backup & report files from converting an old project file
212# to a newer Visual Studio version. Backup files are not needed,
213# because we have git ;-)
214_UpgradeReport_Files/
215Backup*/
216UpgradeLog*.XML
217UpgradeLog*.htm
218
219# SQL Server files
220*.mdf
221*.ldf
222
223# Business Intelligence projects
224*.rdl.data
225*.bim.layout
226*.bim_*.settings
227
228# Microsoft Fakes
229FakesAssemblies/
230
231# Node.js Tools for Visual Studio
232.ntvs_analysis.dat
233
234# Visual Studio 6 build log
235*.plg
236
237# Visual Studio 6 workspace options file
238*.opt