OSDN Git Service

予告通り、communicationを切り離した。
[gikomona/libcore.git] / .gitignore
1 # Created by http://gitignore.io
2
3 ### Linux ###
4 .*
5 !.gitignore
6 !.git*
7 *~
8
9 ### OSX ###
10 .DS_Store
11 .AppleDouble
12 .LSOverride
13 Icon
14
15 # Thumbnails
16 ._*
17
18 # Files that might appear on external disk
19 .Spotlight-V100
20 .Trashes
21
22 ### Windows ###
23 # Windows image file caches
24 Thumbs.db
25 ehthumbs.db
26
27 # Folder config file
28 Desktop.ini
29
30 # Recycle Bin used on file shares
31 $RECYCLE.BIN/
32
33 ### C++ ###
34 # Compiled Object files
35 *.slo
36 *.lo
37 *.o
38
39 # Compiled Dynamic libraries
40 *.so
41 *.dylib
42
43 # Compiled Static libraries
44 *.lai
45 *.la
46 *.a
47
48 ### Xcode ###
49 *.xcodeproj/*
50
51 ### Eclipse ###
52 *.pydevproject
53 .project
54 .metadata
55 bin/**
56 tmp/**
57 tmp/**/*
58 *.tmp
59 *.bak
60 *.swp
61 *~.nib
62 local.properties
63 .classpath
64 .settings/
65 .loadpath
66
67 # External tool builders
68 .externalToolBuilders/
69
70 # Locally stored "Eclipse launch configurations"
71 *.launch
72
73 # CDT-specific
74 .cproject
75
76 # PDT-specific
77 .buildpath
78
79 ### VisualStudio ###
80 ## Ignore Visual Studio temporary files, build results, and
81 ## files generated by popular Visual Studio add-ons.
82
83 # User-specific files
84 *.suo
85 *.user
86 *.sln.docstates
87
88 # Build results
89
90 [Dd]ebug/
91 [Dd]ebugPublic/
92 [Rr]elease/
93 x64/
94 #build/
95 [Bb]in/
96 [Oo]bj/
97
98 # MSTest test Results
99 [Tt]est[Rr]esult*/
100 [Bb]uild[Ll]og.*
101
102 *_i.c
103 *_p.c
104 *.ilk
105 *.meta
106 *.obj
107 *.pch
108 *.pdb
109 *.pgc
110 *.pgd
111 *.rsp
112 *.sbr
113 *.tlb
114 *.tli
115 *.tlh
116 *.tmp
117 *.tmp_proj
118 *.log
119 *.vspscc
120 *.vssscc
121 .builds
122 *.pidb
123 *.log
124 *.scc
125
126 # Visual C++ cache files
127 ipch/
128 *.aps
129 *.ncb
130 *.opensdf
131 *.sdf
132 *.cachefile
133
134 # Visual Studio profiler
135 *.psess
136 *.vsp
137 *.vspx
138
139 # Guidance Automation Toolkit
140 *.gpState
141
142 # ReSharper is a .NET coding add-in
143 _ReSharper*/
144 *.[Rr]e[Ss]harper
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 # Installshield output folder
157 [Ee]xpress/
158
159 # DocProject is a documentation generator add-in
160 DocProject/buildhelp/
161 DocProject/Help/*.HxT
162 DocProject/Help/*.HxC
163 DocProject/Help/*.hhc
164 DocProject/Help/*.hhk
165 DocProject/Help/*.hhp
166 DocProject/Help/Html2
167 DocProject/Help/html
168
169 # Click-Once directory
170 publish/
171
172 # Publish Web Output
173 *.Publish.xml
174 *.pubxml
175
176 # NuGet Packages Directory
177 ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
178 #packages/
179
180 # Windows Azure Build Output
181 csx
182 *.build.csdef
183
184 # Windows Store app package directory
185 AppPackages/
186
187 # Others
188 sql/
189 *.Cache
190 ClientBin/
191 [Ss]tyle[Cc]op.*
192 ~$*
193 *~
194 *.dbmdl
195 *.[Pp]ublish.xml
196 *.pfx
197 *.publishsettings
198
199 # RIA/Silverlight projects
200 Generated_Code/
201
202 # Backup & report files from converting an old project file to a newer
203 # Visual Studio version. Backup files are not needed, because we have git ;-)
204 _UpgradeReport_Files/
205 Backup*/
206 UpgradeLog*.XML
207 UpgradeLog*.htm
208
209 # SQL Server files
210 App_Data/*.mdf
211 App_Data/*.ldf
212
213 # Business Intelligence projects
214 *.rdl.data
215 *.bim.layout
216 *.bim_*.settings
217
218 # =========================
219 # Windows detritus
220 # =========================
221
222 # Windows image file caches
223 Thumbs.db
224 ehthumbs.db
225
226 # Folder config file
227 Desktop.ini
228
229 # Recycle Bin used on file shares
230 $RECYCLE.BIN/
231
232 # Mac crap
233 .DS_Store
234
235 ### CMake ###
236 CMakeCache.txt
237 CMakeFiles
238 Makefile
239 cmake_install.cmake
240 install_manifest.txt