Git Bash 连接 GitHub
Git Bash 连接 GitHub
本地配置
- 设置Email、userName
# 全局配置
git config --global user.email "you@example.com"
git config --global user.name "Your userName"
# 当前目录配置
git config user.email "you@example.com"
git config user.name "Your userName"
- 生成公钥
ssh-keygen -C ‘your@email.address’ -t rsa
- 复制公钥
clip < ~/.ssh/id_rsa.pub # Windows CMD
Get-Content ~/.ssh/id_rsa.pub | Set-Clipboard # Windows Powershell
cat ~/.ssh/id_rsa.pub | pbcopy # Unix
# 远程配置
前往GitHub粘贴
Settings -- SSH ang GPG keys -- New SSH key
# 验证连接
ssh -T git@github.com
# 设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890
