- action:GitHub 持续集成工具
SSH
查看 ~/.ssh
目录下是否有
# 创建,一路回车
ssh-keygen -t ed25519 -C "your_email@example.com"
# 拷贝 pub 文件内容到剪贴板
cat id_ed25519.pub | pbcopy
拷贝后到 GitHub -> Setting -> SSH and GPG keys 粘贴即可,其他问题可参考 使用 SSH 连接到 GitHub。
技巧
问题
GnuTLS recv error (-110): The TLS connection was non-properly terminated.
apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
在 Ubuntu 下成功解决。