linux生成git ssh keys,Git config 配置及SSH key生成

今天又有人问我这个问题下面我就把如何配置自己git的全局信息以及SSH key的生成方式写下来以免重复工作。

首先你需要的是这两行命令(当然不配置也是可以的)

git config –global user.name “XXX”

git config –global user.email XX@example.com(your email address)

检查SSH keys是否存在

输入下面的命令,如果有文件id_rsa.pub 或 id_dsa.pub,则直接进入步骤3将SSH key添加到GitHub中,否则进入第二步生成SSH key

ls -al ~/.ssh( Lists the files in your .ssh directory, if they exist)

生成新的ssh key

在命令行中输入ssh-keygen -t rsa -C “your_email@example.com”

默认会在相应路径下(/your_home_path)生成id_rsa和id_rsa.pub两个文件,如下面代码所示

ssh-keygen -t rsa -C “your_email@example.com”

( Creates a new ssh key using the provided emailGenerating public/private rsa key pair.Enter file in which to save the key (/your_home_path/.ssh/id_rsa)

将ssh key添加到GitHub中

用自己喜欢的文本编辑器打开id_rsa.pub文件,里面的信息即为SSH key,将这些信息复制到GitHub的Add

SSH key页面即可

不同的操作系统,均有一些命令,直接将SSH key从文件拷贝到粘贴板中,如下:

mac

pbcopy < ~/.ssh/id_rsa.pub

( Copies the contents of the id_rsa.pub file to your clipboard)

windows

clip < ~/.ssh/id_rsa.pub

(Copies the contents of the id_rsa.pub file to your clipboard)

Linux

sudo apt-get install xclip

( Downloads and installs xclip. If you don’t have apt-get, you mightneed to use another installer (like yum)) xclip -sel clip < ~/.ssh/id_rsa.pub( Copies the contents of the id_rsa.pub file to your clipboard)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值