comparison .gitignore @ 796:0eee433d0084

new readme for a new age, also added a gitignore
author Daniel Blakemore <DanBlakemore@gmail.com>
date Tue, 17 Mar 2015 11:02:47 -0600
parents
children
comparison
equal deleted inserted replaced
795:aac7cdbece6d 796:0eee433d0084
1 # happily stolen from https://github.com/github/gitignore/tree/master/Global
2
3 # OSX ignores
4
5 .DS_Store
6 .AppleDouble
7 .LSOverride
8
9 # Icon must end with two \r
10 Icon
11
12
13 # Thumbnails
14 ._*
15
16 # Files that might appear in the root of a volume
17 .DocumentRevisions-V100
18 .fseventsd
19 .Spotlight-V100
20 .TemporaryItems
21 .Trashes
22 .VolumeIcon.icns
23
24 # Directories potentially created on remote AFP share
25 .AppleDB
26 .AppleDesktop
27 Network Trash Folder
28 Temporary Items
29 .apdisk
30
31 # Xcode ignores
32
33 build/
34 *.pbxuser
35 !default.pbxuser
36 *.mode1v3
37 !default.mode1v3
38 *.mode2v3
39 !default.mode2v3
40 *.perspectivev3
41 !default.perspectivev3
42 xcuserdata
43 *.xccheckout
44 *.moved-aside
45 DerivedData
46 *.xcuserstate
47
48
49 # Visual Studio ignores (man I'm glad I don't use vs)
50
51 ## Ignore Visual Studio temporary files, build results, and
52 ## files generated by popular Visual Studio add-ons.
53
54 # User-specific files
55 *.suo
56 *.user
57 *.userosscache
58 *.sln.docstates
59
60 # User-specific files (MonoDevelop/Xamarin Studio)
61 *.userprefs
62
63 # Build results
64 [Dd]ebug/
65 [Dd]ebugPublic/
66 [Rr]elease/
67 [Rr]eleases/
68 x64/
69 x86/
70 build/
71 bld/
72 [Bb]in/
73 [Oo]bj/
74
75 # Visual Studo 2015 cache/options directory
76 .vs/
77
78 # MSTest test Results
79 [Tt]est[Rr]esult*/
80 [Bb]uild[Ll]og.*
81
82 # NUNIT
83 *.VisualState.xml
84 TestResult.xml
85
86 # Build Results of an ATL Project
87 [Dd]ebugPS/
88 [Rr]eleasePS/
89 dlldata.c
90
91 *_i.c
92 *_p.c
93 *_i.h
94 *.ilk
95 *.meta
96 *.obj
97 *.pch
98 *.pdb
99 *.pgc
100 *.pgd
101 *.rsp
102 *.sbr
103 *.tlb
104 *.tli
105 *.tlh
106 *.tmp
107 *.tmp_proj
108 *.log
109 *.vspscc
110 *.vssscc
111 .builds
112 *.pidb
113 *.svclog
114 *.scc
115
116 # Chutzpah Test files
117 _Chutzpah*
118
119 # Visual C++ cache files
120 ipch/
121 *.aps
122 *.ncb
123 *.opensdf
124 *.sdf
125 *.cachefile
126
127 # Visual Studio profiler
128 *.psess
129 *.vsp
130 *.vspx
131
132 # TFS 2012 Local Workspace
133 $tf/
134
135 # Guidance Automation Toolkit
136 *.gpState
137
138 # ReSharper is a .NET coding add-in
139 _ReSharper*/
140 *.[Rr]e[Ss]harper
141 *.DotSettings.user
142
143 # JustCode is a .NET coding addin-in
144 .JustCode
145
146 # TeamCity is a build add-in
147 _TeamCity*
148
149 # DotCover is a Code Coverage Tool
150 *.dotCover
151
152 # NCrunch
153 _NCrunch_*
154 .*crunch*.local.xml
155
156 # MightyMoose
157 *.mm.*
158 AutoTest.Net/
159
160 # Web workbench (sass)
161 .sass-cache/
162
163 # Installshield output folder
164 [Ee]xpress/
165
166 # DocProject is a documentation generator add-in
167 DocProject/buildhelp/
168 DocProject/Help/*.HxT
169 DocProject/Help/*.HxC
170 DocProject/Help/*.hhc
171 DocProject/Help/*.hhk
172 DocProject/Help/*.hhp
173 DocProject/Help/Html2
174 DocProject/Help/html
175
176 # Click-Once directory
177 publish/
178
179 # Publish Web Output
180 *.[Pp]ublish.xml
181 *.azurePubxml
182 # TODO: Comment the next line if you want to checkin your web deploy settings
183 # but database connection strings (with potential passwords) will be unencrypted
184 *.pubxml
185 *.publishproj
186
187 # NuGet Packages
188 *.nupkg
189 # The packages folder can be ignored because of Package Restore
190 **/packages/*
191 # except build/, which is used as an MSBuild target.
192 !**/packages/build/
193 # Uncomment if necessary however generally it will be regenerated when needed
194 #!**/packages/repositories.config
195
196 # Windows Azure Build Output
197 csx/
198 *.build.csdef
199
200 # Windows Store app package directory
201 AppPackages/
202
203 # Others
204 *.[Cc]ache
205 ClientBin/
206 [Ss]tyle[Cc]op.*
207 ~$*
208 *~
209 *.dbmdl
210 *.dbproj.schemaview
211 *.pfx
212 *.publishsettings
213 node_modules/
214 bower_components/
215
216 # RIA/Silverlight projects
217 Generated_Code/
218
219 # Backup & report files from converting an old project file
220 # to a newer Visual Studio version. Backup files are not needed,
221 # because we have git ;-)
222 _UpgradeReport_Files/
223 Backup*/
224 UpgradeLog*.XML
225 UpgradeLog*.htm
226
227 # SQL Server files
228 *.mdf
229 *.ldf
230
231 # Business Intelligence projects
232 *.rdl.data
233 *.bim.layout
234 *.bim_*.settings
235
236 # Microsoft Fakes
237 FakesAssemblies/
238
239 # Node.js Tools for Visual Studio
240 .ntvs_analysis.dat
241
242 # Visual Studio 6 build log
243 *.plg
244
245 # Visual Studio 6 workspace options file
246 *.opt