GitHub

 

2022-05-06

  • action:GitHub 持续集成工具

SSH

查看 ~/.ssh 目录下是否有

Terminal window
1
# 创建,一路回车
2
ssh-keygen -t ed25519 -C "[email protected]"
3
# 拷贝 pub 文件内容到剪贴板
4
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.

Terminal window
1
apt-get install gnutls-bin
2
git config --global http.sslVerify false
3
git config --global http.postBuffer 1048576000

Ubuntu 下成功解决。

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