text 在Windows PC上添加SSH密钥到github

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 在Windows PC上添加SSH密钥到github相关的知识,希望对你有一定的参考价值。

1. Install git (https://git-scm.com/downloads)
2. Open Git Bash windows
3. Set config as below (NB : if you don't set your mail linked to the Github account, you won't see your contributions)

git config --global user.name "Quentin Fazilleau"
git config --global user.email "********@*****.com"

4. Generating keypair SSH as below :

ssh-keygen -t rsa -b 4096 -C "********@*****.com"

5. Add SSH key to GitHub account following https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/
6. Open GitHub repository
7. do your stuff

以上是关于text 在Windows PC上添加SSH密钥到github的主要内容,如果未能解决你的问题,请参考以下文章

text 在Windows上复制ssh密钥

Git - 如何在 Windows 10 上删除 SSH 密钥

在VSTS上使用多个SSH密钥

Paramiko 在 Windows 上找不到来自 ssh-agent 的密钥

无法将 Linux 机器作为 Slave 添加到在 Windows 机器上运行的 Jenkins 主机

如何在新计算机上安装 SSH 密钥? [关闭]