美文网首页让前端飞
Git创建一个SSH KEY

Git创建一个SSH KEY

作者: littleyu | 来源:发表于2018-10-11 14:37 被阅读1次

一、Generating a new SSH key

  1. Open Git Bash.

  2. Paste the text below, substituting in your GitHub email address.

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

// 输入这句话,连按三个回车,直接跳过下面的步骤

This creates a new ssh key, using the provided email as a label.

Generating public/private rsa key pair.
  1. When you're prompted to "Enter a file in which to save the key," press Enter. This accepts the default file location.
Enter a file in which to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]
  1. At the prompt, type a secure passphrase. For more information, see "Working with SSH key passphrases".
Enter passphrase (empty for no passphrase): [Type a passphrase]
Enter same passphrase again: [Type passphrase again]

二、安装完成之后,输入命令 ll ~/.ssh 查看是否安装成功,出现 id_rsa(锁) 和 id_rsa.pub(钥匙) 成功

三、出现锁🔒之后,我们输入命令cat ~/.ssh/id_rsa.pub查看内容并上传github

四、创建完成之后我们可以测试一下

如果之前已经存在,输入命令rm ~./ssh/known_hosts删除之前的连接

输入命令测试连接
ssh -T git@github.com
输入yes

相关文章

  • 本地文件上传到GitHub(Part01,SSH添加到Githu

    1.创建SSH Key 打开Shell(Windows下打开Git Bash),创建SSH Key:$ ssh-k...

  • 3、GitHub建立远程仓库

    1、创建公钥(SSH Key) 打开 Git Bash,创建SSH Key,输入ssh-keygen -t rsa...

  • 3.git远程建立仓库

    1、创建公钥(SSH Key) 打开 Git Bash,创建SSH Key,输入ssh-keygen -t rsa...

  • Hexo博客搭建-部署到github和coding

    git的安装 git的安装 配置ssh key(免密登陆技术) ssh key配置 github上创建一个仓库 必...

  • Git学习(二)

    创建SSH Key首先在项目存放的同步目录下进行 git bash hear 然后输入ssh创建命令ssh-key...

  • git command

    1. 管理git ssh key 创建key pairs ssh-keygen -t rsa -C "yourem...

  • git配置

    git 步骤 一.Git密钥配置 Github 安装 下载 git Windows 版 创建SSH Key:创建s...

  • git常用操作

    git工作流程 本地git与github建立连接 在本地创建ssh key来创建连接,$ssh-keygen -t...

  • GitHub远程库起步练习

    一、创建SSH Key(公钥) 1.初次使用在window下右击打开 Git Bash,开始创建SSH Key,输...

  • 3 github远程初步

    一、创建SSH Key(公钥) 1.初次使用在window下右击打开 Git Bash,开始创建SSH Key,输...

网友评论

    本文标题:Git创建一个SSH KEY

    本文链接:https://www.haomeiwen.com/subject/afsbaftx.html