github
# github
# github 高级搜索技巧
in:name <关键字>
仓库名称带关键字查询
in:description <关键字>
仓库描述带关键字查询
in:readme <关键字>
README 文件带关键字查询
stars(fork): >(=) <数字> <关键字>
star 或 fork 数大于(或等于)指定数字的带关键字查询
stars(fork): 10..20 <关键词>
star 或 fork 数在 10 到 20 之间的带关键字查询
size:>=5000 <关键词>
限定仓库大于等于 5000K 的带关键字查询
pushed(created):>2019-11-15 <关键字>
更新 或 创建 日期在 2019 年 11 月 16 日之后的带关键字查询
license:apache-2.0 <关键字>
LICENSE 为 apache-2.0 的带关键字查询
language:java <关键词>
仓库语言为 Java 的带关键字查询
user:<用户名>
查询某个用户的项目
org:<组织名>
查询某个组织的项目
以上查询条件可组合使用,空格隔开
示例 1:搜索仓库名包含 css,并且 stars 数大于 1000 的项目
in:name css stars:>1000
示例 2:搜索描述中包含"微信公众号",并且 fork 大于 50,并且最近更新时间在 2020-12-15 之后的,并且使用开发语言为 vue 的项目
in:description 微信公众号 fork:>50 pushed:>2020-12-15 language:vue
2
3
4
5
6
7
8
使用高级搜索页搜索: https://github.com/search/advanced
# github 访问不了
- 自动方式 SwitchHosts
(1)下载 SwitchHosts https://github.com/oldj/SwitchHosts/releases (opens new window)
(2)安装 SwitchHosts_installer_x64_4.1.0.6076
(3)添加 Host
Hosts 标题随意
Hosts 类型: Remote
URL: https://raw.hellogithub.com/hosts
Auto Refresh: 最好选 1 hour
- 直接修改 host 方法
1.通过 http://ping.chinaz.com/ (opens new window) 或者 http://tool.chinaz.com/dns/ (opens new window) 网址输入 github.com
ping 检测 找到其中的响应时间快的响应 IP,改写下面 ip
2.找到文件
C:\Windows\System32\drivers\etc\hosts
添加
#git配置
192.30.253.113 github.com
151.101.112.249 github.global.ssl.fastly.net
2
3
3.刷新 DNS 缓存 ,在 cmd 命令行执行
ipconfig /flushdns
Windows IP 配置
已成功刷新 DNS 解析缓存。
# 码云来转接做下载加速
登录码云之后在页面右上角的加号选择从
GitHub/GitLab
导入项目选择从 URL 导入,粘贴从 GitHub 复制来的仓库地址,然后导入,这个导入过程一般是很快的。
这个方法适合用于克隆比较大的项目
# GitHub Actions
GitHub Actions 实现自动部署静态博客
GitHub Actions 定时运行代码
# Github Workflow
# github 其它
GitHub 项目 README 生成器:https://github.com/rahuldkjain/github-profile-readme-generator (opens new window)
GitHub 统计信息:https://github.com/anuraghazra/github-readme-stats/blob/master/docs/readme_cn.md (opens new window)
参考: