罗俊彬 發表於 2021-3-15 09:17:00

github gitee高级搜索

<p></p><div class="toc"><div class="toc-container-header">目录</div><ul><li>github高级搜索<ul><li>1、基本搜索途径<ul><li>1、搜索框</li><li>2、过滤器</li></ul></li><li>2、高级搜索方式<ul><li>1、项目名称</li><li>2、项目描述</li><li>3、readme文件</li><li>4、star 数量</li><li>5、fork 数量</li><li>6、仓库大小</li><li>7、最近更新时间</li><li>8、仓库创建时间</li><li>9、license</li><li>10、仓库开发语言</li><li>11、仓库持有者</li><li>12、组织机构代码</li><li>13、多条件组合</li></ul></li></ul></li><li>gitee 高级搜索</li></ul></div><p></p>
<h1 id="github高级搜索">github高级搜索</h1>
<h2 id="1基本搜索途径">1、基本搜索途径</h2>
<h3 id="1搜索框">1、搜索框</h3>
<p><img src="https://img2020.cnblogs.com/blog/1822097/202103/1822097-20210315091011941-735320901.png"></p>
<h3 id="2过滤器">2、过滤器</h3>
<p><img src="https://img2020.cnblogs.com/blog/1822097/202103/1822097-20210315091031292-1392468956.png"></p>
<h2 id="2高级搜索方式">2、高级搜索方式</h2>
<h3 id="1项目名称">1、项目名称</h3>
<p>// 仓库名称 中包含你搜索的文本的仓库<br>
in:name 关键词</p>
<h3 id="2项目描述">2、项目描述</h3>
<p>// 仓库描述 中包含你搜索的文本的仓库<br>
in:description 关键词</p>
<h3 id="3readme文件">3、readme文件</h3>
<p>// readme 文件中包含你搜索的文本的仓库<br>
in:readme 关键词</p>
<h3 id="4star-数量">4、star 数量</h3>
<p>// star 数量大于500的项目<br>
stars: &gt; 500<br>
// star 数量在10-20之间的仓库<br>
stars: 10..20 关键词</p>
<h3 id="5fork-数量">5、fork 数量</h3>
<p>// fork 数量大于500的项目<br>
fork: &gt; 500<br>
// fork 数量在10-20之间的仓库<br>
fork: 10..20 关键词</p>
<h3 id="6仓库大小">6、仓库大小</h3>
<p>// 单位是KB<br>
// 仓库大于5000KB的仓库<br>
size:&gt;=5000 关键词</p>
<h3 id="7最近更新时间">7、最近更新时间</h3>
<p>// 最近一次提交在2021年以后的仓库<br>
pushed:&gt;2021-03-15 关键词</p>
<h3 id="8仓库创建时间">8、仓库创建时间</h3>
<p>// 2021年以后创建的仓库<br>
created:&gt;2021-03-15 关键词</p>
<h3 id="9license">9、license</h3>
<p>// 使用 apache-2.0 协议的仓库<br>
license:apache-2.0 关键词</p>
<h3 id="10仓库开发语言">10、仓库开发语言</h3>
<p>// 用javascript 语言写的仓库<br>
language:javascript 关键词</p>
<h3 id="11仓库持有者">11、仓库持有者</h3>
<p>// 用户pmcee 上传的仓库<br>
user:pmcee 关键词</p>
<h3 id="12组织机构代码">12、组织机构代码</h3>
<p>// 列出org 的 spring-cloud仓库<br>
org:spring-cloud</p>
<h3 id="13多条件组合">13、多条件组合</h3>
<p>// 中间加个空格<br>
user:pmcee language:javascript</p>
<h1 id="gitee-高级搜索">gitee 高级搜索</h1>
<blockquote>
<p>目前 Gitee 收录了包括Java、PHP等在的三十多种语言的开源项目。用户可以通过组合「关键字」+「开发语言类型」+「项目收藏数(Watch)」+「项目克隆数(Fork)」+「项目更新时间」等筛选条件,查找用户需要的项目。</p>
</blockquote><br><br>
来源:https://www.cnblogs.com/pmcee/p/14535542.html
頁: [1]
查看完整版本: github gitee高级搜索