-
生成新的 SSH Key 1ssh-keygen -t rsa -b 4096 -C "your_email@example.com" 2... 3Enter a file in which to save the key (/home/you/.ssh/algorithm): <key_name> 4Enter passphrase (empty for no passphrase): [输入密码] 5Enter same passphrase again: [再次输入密码] 将新的 SSH Key 添加到 Github 将公钥文件的内容COPY
阅读更多 -
0、基础设置 1# 查看代理 2$ git config --global --get http.proxy 3$ git config --global --get https.proxy 4# 设置代理 5$ git config --global http.proxy http://[username:passwrod@]<ip or URL>:port 6$ git config --global https.proxy http://[username:passwrod@]<ip or URL>:port 7# 取消代理 8$ git config --global --unset …
阅读更多