• 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

技巧

  1. 在项目界面按. 键,在网页编辑器(VSCode)中打开浏览;
  2. 在项目地址前加 gitpod.io/#/,在线运行项目(VSCode);

问题

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 下成功解决。

参考:https://github.com/argoproj/argo-cd/issues/3994