GitHub设置公钥

GitHub设置公钥在windows下面

1. 安装git,从程序目录打开 "Git Bash"

2. 键入命令:ssh-keygen -t rsa -C "[email protected]"

"[email protected]"是github账号

3. 提醒你输入key的名称,输入如id_rsa

如果执行成功。返回

Generating public/private rsa key pair.
Enter file in which to save the key (/home/forwhat.cn/.ssh/id_rsa): 
在这里就是设置存储地址了.反正我是直接按的回车

然后还会返回

Enter passphrase (empty for no passphrase):

再次直接回车。
Enter same passphrase again:

再次回车。

Your identification has been saved in /home/forwhat.cn/.ssh/id_rsa.
Your public key has been saved in /home/forwhat.cn/.ssh/id_rsa.pub.
The key fingerprint is:
这里有一串数。我把他屏蔽了。
The key‘s randomart image is:
+--[ RSA 2048]----+
|                 |
|                 |
|                 |
|    o            |
|   + .  S        |
|  . = .  o       |
|   o + +o.o      |
|E o . o.=+.      |
|.+   ==+ooo.     |
+-----------------+

4. 在C:\Documents and Settings\Administrator\下产生两个文件:id_rsa和id_rsa.pub

5. 把4中生成的密钥文件复制到C:\Documents and Settings\Administrator\.ssh\ 目 录下。

6. 用记事本打开id_rsa.pub文件,复制内容,在github.com的网站上到ssh密钥管理页面,添加新公钥,随便取个名字,内容粘贴刚

需要注意步骤2中产生的密钥文件在当前用户的根目录,必须把这两个文件放到当前用户目录的“.ssh”目录下才能生效。

时间: 2024-11-09 07:45:32

GitHub设置公钥的相关文章

GitHub 设置首页显示 404 There isn't a GitHub Pages site here.

问题如题! 能使用的必要条件是: 1.创建的仓库 Code 中 必须 有 README.md 文件,内容自定 2.设置模板在仓库中 Settings -->GitHub Pages -->Chang theme 设置后会在Code 根目录生成一个 _config.yml 文件,添加两个选择 title: Test title description: Test description GitHub 设置首页显示 404 There isn't a GitHub Pages site here.

github SSH公钥设置

1.配置用户名和邮箱 git config --global user.name sxlisme git config --global user.email [email protected] 2.生成 ssh文件 ssh-keygen -t rsa -C [email protected] 3.生成后 github 提交后不显示绿点的原因可能是你的账号和邮箱不一致,尝试重置一下看看 原文地址:https://www.cnblogs.com/s-xl/p/12009966.html

win7下如何获取github ssh 公钥

1.下载gitwin7客户端 2.打开 "Git bash" 工具,初始化注册的 git账号,邮箱 $ ssh-keygen -t rsa -C  "[email protected]"    //[email protected]指的是github的邮箱,也可以缺省一路回车即可 Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa): Enter passphrase (em

github设置添加SSH(转载自:破男孩)

注:本文来源于 破男孩 博客(http://www.cnblogs.com/ayseeing/p/3572582.html)能切实解决问题. 很多朋友在用github管理项目的时候,都是直接使用https url克隆到本地,当然也有有些人使用 SSH url 克隆到本地.然而,为什么绝大多数人会使用https url克隆呢? 这是因为,使用https url克隆对初学者来说会比较方便,复制https url 然后到 git Bash 里面直接用clone命令克隆到本地就好了.而使用 SSH ur

使用git bush 生成github SSH公钥

1 如果没有安装ssh,那么使用下面的指令 sudo apt-get install ssh 2 检查SSH公钥 cd ~/.ssh 看看存不存在.ssh,如果存在的话,掠过下一步:不存在的请看下一步 3 生成SSH公钥 $ ssh-keygen -t rsa -C "[email protected]" # Creates a new ssh key using the provided email Generating public/private rsa key pair. En

Windows下Git客户端和Github设置

第一步:安装Git For Windows msysgit是Windows版的Git,从https://git-for-windows.github.io/下载,然后按默认选项安装即可. 下载链接:https://github.com/git-for-windows/git/releases/latest 然后各种下一步,建议使用默认选项. 安装完成后,在开始菜单里找到"Git"->"Git Bash",可以打开命令窗口,就说明Git安装成功! 第二步:设置G

配置github SSH公钥登录

git的安装见https://www.cnblogs.com/liliyang/p/9829931.html 配置git使用ssh密钥 git支持https和git两种传输协议,github分享链接时会有两种协议可选: 若git使用https协议,每次pull, push均提示要输入密码,使用git协议,然后使用ssh密钥对认证,即可实现免密 配置git 通过ssh协议免密需要三个步骤: 1.生成密钥对 2.配置远程仓库(这里使用github)上的公钥 3.把git的 remote url 修改

Github设置

首先在github服务器上执行:ssh-keygen 看到如下提示: 打开对应的pub文件.粘贴其中的文字到github. 之后进入github服务器进行验证:输入ssh -T [email protected],看到如下提示公钥验证成功.

GitHub设置添加SSH

1.创建一个新的repository: github:repository name 和本地创建的git名最好一样 本地:创建文件夹,在文件夹执行命令:git init 2.检查是否已经存在文件id_rsa 或 id_rsa.pub,对外只提供pub(公开)文件: 在终端执行命令: cd ~/.ssh ls 3.如果已经存在,创建一个 SSH key: 在终端执行命令: ssh-keygen -t rsa -C "[email protected]" "[email prot