博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git-ssh 配置和使用
阅读量:6374 次
发布时间:2019-06-23

本文共 1288 字,大约阅读时间需要 4 分钟。

1、设置Git的user name和email:(如果是第一次的话)

$ git config --global user.name "humingx"    $ git config --global user.email "humingx@yeah.net"

2、生成密钥

$ ssh-keygen -t rsa -C "humingx@yeah.net"

连续3个回车。如果不需要密码的话。

最后得到了两个文件:id_rsaid_rsa.pub


如果不是第一次,就选择overwrite.

3、添加密钥到ssh-agent

确保 ssh-agent 是可用的。ssh-agent是一种控制用来保存公钥身份验证所使用的私钥的程序,其实ssh-agent就是一个密钥管理器,运行ssh-agent以后,使用ssh-add将私钥交给ssh-agent保管,其他程序需要身份验证的时候可以将验证申请交给ssh-agent来完成整个认证过程。

# start the ssh-agent in the background    eval "$(ssh-agent -s)"    Agent pid 59566

添加生成的 SSH key 到 ssh-agent。

$ ssh-add ~/.ssh/id_rsa

4、登陆Github, 添加 ssh 。

id_rsa.pub文件里的内容复制到这里





5、测试:

$ ssh -T git@github.com

你将会看到:

The authenticity of host 'github.com (207.97.227.239)' can't be established.    RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)?

选择 yes

Hi humingx! You've successfully authenticated, but GitHub does not provide shell access.

如果看到Hi后面是你的用户名,就说明成功了。

6、修改.git文件夹下config中的url

修改前

[remote "origin"]    url = https://github.com/humingx/humingx.github.io.git    fetch = +refs/heads/*:refs/remotes/origin/*

修改后

[remote "origin"]    url = git@github.com:humingx/humingx.github.io.git    fetch = +refs/heads/*:refs/remotes/origin/*

7、发布

  • https://segmentfault.com/a/1190000002645623
 

转载地址:http://lrjqa.baihongyu.com/

你可能感兴趣的文章
元类与面向切面编程
查看>>
40.Node.js Web 模块
查看>>
Mac+iPhone 移动端真机调试
查看>>
02-移动端开发教程-CSS3新特性(中)
查看>>
Callable,Runnable比较及用法
查看>>
Centos7安装docker-compse踩过的坑
查看>>
细说Nullable<T>类型
查看>>
oracle 插入表数据的4种方式
查看>>
7.Ajax
查看>>
Linux vi/vim编辑器常用命令与用法总结
查看>>
对于 url encode decode js 和 c# 有差异
查看>>
centos rz sz安装
查看>>
mysql 修改列为not null报错Invalid use of NULL value
查看>>
epoll源码分析
查看>>
朱晔和你聊Spring系列S1E4:灵活但不算好用的Spring MVC
查看>>
Java使用Try with resources自动关闭资源
查看>>
china-pub十一周年庆,多重优惠隆重登场,千万别错过哟!
查看>>
HDU 3068 最长回文(manacher算法)
查看>>
获得视频时间总长度的另一种方法
查看>>
某软件大赛编程题(转)
查看>>