github使用技巧

本地项目上传至github

在安装好git的前提下:

create a new repository on the command line

1
2
3
4
5
6
7
echo "# text" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/marchboy/text.git
git push -u origin main

push an existing repository from the command line

1
2
3
git remote add origin https://github.com/marchboy/text.git
git branch -M main
git push -u origin main

利用 GitHub 强大的搜索功能,增加几个搜索参数即可轻松找到「目标人物」。

搜作者

搜索条件 备注
location: location:china,匹配用户填写的地址
language: language:python , 匹配开发语言
followers: follower: >= 100 , 匹配拥有超过100名关注者的开发者
in:fullname: John in:fullname , 匹配用户实际名为John 的开发者

需要在 GitHub 上找到优秀的项目和工具,同样,通过关键字或者设置搜索条件帮助你事半功倍找到好资源。我的使用习惯是先用某些关键词搜索,得到的搜索结果优先展示一些现成的软件和工具。

搜项目

搜索条件 备注
Awesome + 关键字 Awesome windows,帮助找到优秀的windows软件
stars: stars:>=500,匹配收藏数量超过500的项目
language: language:python , 匹配开发语言
forks: forks:>=500, 匹配分支数量超过500的项目

实例

stars:>=500 language:javascript

Reference:

https://sspai.com/post/46061

https://help.github.com/articles/about-searching-on-github/

------ 本文结束------
Donate comment here.

欢迎关注我的其它发布渠道