vscode如何链接git远程仓库gitee或github
https://blog.csdn.net/G_C_H/article/details/120673227
1.在GitHub上创建新的仓库
2.生成 SSH 密钥
开启 Git Bash
命令行中输入:ssh-keygen -t ed25519 -C "[email protected]"(替换为自己的 GitHub 电子邮件地址)
cd ~/.ssh
cat id_rsa.pub 复制打印信息
GitHub 的 Setting 中找到 SSH and GPG keys
把刚刚 copy 的秘钥复制进去,取个名字,完成添加
验证是否成功:
输入 ssh -T [email protected]
如果打印类似如下信息,即完成:
Hi xxxx! You've successfully authenticated, but GitHub does not provide shell access.
标签:GitHub,vscode,gitee,github,git,ssh From: https://www.cnblogs.com/andy-chi/p/16778365.html