美文网首页工作生活
git --ssh秘钥的使用

git --ssh秘钥的使用

作者: 那个村王富贵 | 来源:发表于2019-07-04 11:43 被阅读0次

首先安装git Bash  

windowshttp://msysgit.github.io/

mac与linux 无需安装可直接使用  linux利用软件包

首先设置 姓名和邮箱地址

$ git config--globaluser.name"Firstname Lastname"

$ git config--globaluser.email"your_email@example.com"

这个命令会在~/.gitconfig 中输出为设置文件

提高 命令输出的可读性

$ git config--globalcolor.uiauto

设置SSH Key

$ ssh-keygen-t rsa-C"your_email@example.com"Generatingpublic/privatersa key pair.Enterfileinwhich to save the key

(/Users/your_user_directory/.ssh/id_rsa):按回车键Enterpassphrase(emptyfornopassphrase):输入密码Entersame passphrase again:再次输入密码

公钥的内容 会在~/.ssh/id_rsa.pub 出现

把公钥的内容添加到账户的 sshkeys管理中

链接 ssh

$ ssh-T git@github.com

Theauthenticity of host'github.com(207.97.227.239)'can't be established.

RSA key fingerprint is fingerprint值 .

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

出现以下结果 设置 成功

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

创建一个仓库 并设置 ssh方式

管理ssh keys 设置ssh方式

相关文章

  • 安装和配置Git

    安装git 检查git是否安装成功 git初始化 配置ssh秘钥 git clone 小插曲 由于我的ssh秘钥保...

  • sourceTree使用

    ssh key 多秘钥文件配置git sshkey muliti in windows,使用OpenSSH链接bi...

  • Pycharm连接gitlab(Mac)

    准备 $git 检查是否已经安装git $ssh 检查是否有ssh 生成SSH秘钥 通过命令cd ~/.ssh进入...

  • Github- 上传代码

    廖学峰Git使用生成SSH秘钥 一、本地(git使用) 1、把目录变成Git可以管理的仓库 2、 用命令把文件添加...

  • Linux 配置 Git 过程备份

    安装 git 配置用户名和邮箱 生成 SSH 秘钥 然后,回车 3 次。 Windows 下使用: 查看公钥并复...

  • 去除坑爹的Enter passphrase for key '/

    我们在生成ssh秘钥操作时,如果没注意提示,设置了passphrase 造成每次使用git pull 、git p...

  • ssh使用秘钥免密码登录(转载)

    ssh使用秘钥免密码登录 使用ssh远程连接服务器,有两种身份校验方式:账号密码和秘钥。使用秘钥的方式理论上更加安...

  • ssh-keygen 不是内部或外部命令解决办法!

    ssh-keygen 不是内部或外部命令解决办法! 在使用 git 的远程仓库的时候,生成秘钥的使用,会遇到ssh...

  • 配置git环境

    1.首先要配置本地ssh秘钥。 远程仓库中添加已经生成好的 ssh秘钥。 廖雪峰git学习网站—>远程仓库目录...

  • git --ssh秘钥的使用

    首先安装git Bash windowshttp://msysgit.github.io/ mac与linux 无...

网友评论

    本文标题:git --ssh秘钥的使用

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