git 连接github.com 并配置密钥

Posted 谢礼森

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 连接github.com 并配置密钥相关的知识,希望对你有一定的参考价值。

传送门:http://www.jianshu.com/p/ff1034ed270e

#备份ssh

cd ~/.ssh

$ ls
$ mkdir key_backup //创建备份文件夹
$ cp id_rsa* key_backup //移动你的 key 文件到备份文件夹
$ rm id_rsa*

$ ssh-keygen -t rsa -C "[email protected]"

打开你生成的id_rsa.pub文件,将内容上传github.com, 用户中心的ssh key

ssh -T [email protected]

$git config --global user.name "your real name"
$git config --global user.email "[email protected]"

以上是关于git 连接github.com 并配置密钥的主要内容,如果未能解决你的问题,请参考以下文章

[软件工程]在Ubuntu系统下配置GIT

使用ssh连接Git仓库(Github)

如何在本地环境配置github

多个 GitHub 帐户和 SSH 配置

git本地仓库连接gitlab配置密钥以及实战应用

如何为本地 git (github) 存储库永久添加 SSH 密钥? [复制]