Introduction
我的个人博客:https://phoenixnest.github.io/
本篇将介绍有关
Git与Github使用
的一些笔记分享。
Git 配置
配置Github用户名与邮箱。
git config --global user.name "你的 Github 用户名"
git config --global user.email "你的 Github 邮箱"
配置远端 SSH 公钥。
# 进入 ~/.ssh,若没有则创建(mkdir ~/.ssh)
cd ~/.ssh
# 生成公钥
ssh-keygen -t rsa -C "你的 Github 邮箱"
# 查看公钥文件
cat id_rsa.pub
上传密钥
访问Github并登录,点击右上角头像,进入 Settings - SSH and GPG keys,点击右上角的 New SSH key。
在 Key 输入框内填入 id_rsa.pub 中的全部内容。
测试远端链接是否成功
ssh git@github.com
Github 访问加速
对于Windows系统,在日常使用过程中经常会出现访问速度慢的情况,此处将介绍通过修改 host 文件对 Github 进行加速的笔记。
Windows 环境下的host文件位于:C:\Windows\System32\drivers\etc下
修改时需要管理员权限
在尾部追加以下ip,有关 Github ip 的信息可到ipaddress上查询并修改为自己所查询到的准确地址。
140.82.112.3 github.com
199.232.69.194 github.global.ssl.fastly.net
199.232.96.133 avatars.githubusercontent.com
199.232.96.133 raw.githubusercontent.com
199.232.96.133 user-images.githubusercontent.com
199.232.96.133 camo.githubusercontent.com
# 刷新DNS缓存
ipconfig /flushdns