博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git的安装
阅读量:5264 次
发布时间:2019-06-14

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

  1. 安装Git

yum install git

  1. 生成SSH密钥

(设置全局变量)

git config –global user.name “xxx”     # 你的git用户名

git config –global user.email “xxx@xxx.com”    # git的邮箱

ssh-keygen -t rsa -C “your email address”    # 邮箱地址

然后连续按三个回车得到 id_rsa 和 id_rsa.pub 文件,在/root/.ssh 下说明生成成功

 

  1. 添加密钥到Github

在网页中登录你的Github

点击自己的头像->settings->SSH And GPG Keys->New SSH key 

id_rsa.pub 中的内容($ cat ~/.ssh/id_rsa.pub #此命令可查看key内容)粘贴到 Key 文本框中,随意输入一个 title(不要有中文),点击 Add Key 即可

 

 

 

测试

在命令行中输入

ssh git@github.com

 

会出现如下询问:

Are you sure you want to continue connecting (yes/no)?

键入yes后回车,如果出现

Hi xxx! You’ve successfully authenticated, but GitHub does not provide shell accessConnection to github.com closed.

 

那就是配置成功

 

转载于:https://www.cnblogs.com/sunzhiqi/p/10862043.html

你可能感兴趣的文章
Ubuntu下面安装eclipse for c++
查看>>
让IE浏览器支持CSS3圆角属性的方法
查看>>
巡风源码阅读与分析---nascan.py
查看>>
LiveBinding应用 dataBind 数据绑定
查看>>
Linux重定向: > 和 &> 区别
查看>>
nginx修改内核参数
查看>>
C 筛选法找素数
查看>>
TCP为什么需要3次握手与4次挥手(转载)
查看>>
IOC容器
查看>>
Windows 2003全面优化
查看>>
URAL 1002 Phone Numbers(KMP+最短路orDP)
查看>>
web_day4_css_宽度
查看>>
electron入门心得
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
简述spring中常有的几种advice?
查看>>
整理推荐的CSS属性书写顺序
查看>>
ServerSocket和Socket通信
查看>>