Skip to content

Commit c17e171

Browse files
committed
更改排除文件规则
1 parent 1bc15f5 commit c17e171

File tree

1 file changed

+107
-11
lines changed

1 file changed

+107
-11
lines changed

.gitignore

Lines changed: 107 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,113 @@
11
#
2-
# Normal rules
2+
# git files that we don't want to ignore even it they are dot-files
33
#
4-
.*
4+
!.gitignore
5+
6+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
7+
[Bb]in/
8+
[Oo]bj/
9+
10+
# mstest test results
11+
TestResults
12+
13+
## Ignore Visual Studio temporary files, build results, and
14+
## files generated by popular Visual Studio add-ons.
15+
16+
# User-specific files
517
*.suo
18+
*.user
19+
*.sln.docstates
20+
21+
# Build results
22+
[Dd]ebug/
23+
[Rr]elease/
24+
x64/
25+
*_i.c
26+
*_p.c
27+
*.ilk
28+
*.meta
29+
*.obj
30+
*.pch
631
*.pdb
32+
*.pgc
33+
*.pgd
34+
*.rsp
35+
*.sbr
36+
*.tlb
37+
*.tli
38+
*.tlh
39+
*.tmp
40+
*.log
41+
*.vspscc
42+
*.vssscc
43+
.builds
744

8-
#
9-
# git files that we don't want to ignore even it they are dot-files
10-
#
11-
!.gitignore
45+
# Visual C++ cache files
46+
ipch/
47+
*.aps
48+
*.ncb
49+
*.opensdf
50+
*.sdf
1251

13-
#
14-
# bin and obj directory
15-
#
16-
bin/
17-
obj/
52+
# Visual Studio profiler
53+
*.psess
54+
*.vsp
55+
*.vspx
56+
57+
# Guidance Automation Toolkit
58+
*.gpState
59+
60+
# ReSharper is a .NET coding add-in
61+
_ReSharper*
62+
63+
# NCrunch
64+
*.ncrunch*
65+
.*crunch*.local.xml
66+
67+
# Installshield output folder
68+
[Ee]xpress
69+
70+
# DocProject is a documentation generator add-in
71+
DocProject/buildhelp/
72+
DocProject/Help/*.HxT
73+
DocProject/Help/*.HxC
74+
DocProject/Help/*.hhc
75+
DocProject/Help/*.hhk
76+
DocProject/Help/*.hhp
77+
DocProject/Help/Html2
78+
DocProject/Help/html
79+
80+
# Click-Once directory
81+
publish
82+
83+
# Publish Web Output
84+
*.Publish.xml
85+
86+
# NuGet Packages Directory
87+
packages
88+
89+
# Windows Azure Build Output
90+
csx
91+
*.build.csdef
92+
93+
# Windows Store app package directory
94+
AppPackages/
95+
96+
# Others
97+
[Bb]in
98+
[Oo]bj
99+
sql
100+
TestResults
101+
[Tt]est[Rr]esult*
102+
*.Cache
103+
ClientBin
104+
[Ss]tyle[Cc]op.*
105+
~$*
106+
*.dbmdl
107+
Generated_Code #added for RIA/Silverlight projects
108+
109+
# Backup & report files from converting an old project file to a newer
110+
# Visual Studio version. Backup files are not needed, because we have git ;-)
111+
_UpgradeReport_Files/
112+
Backup*/
113+
UpgradeLog*.XML

0 commit comments

Comments
 (0)