github-ssh

# lsb_release -a
    No LSB modules are available.
    Distributor ID:    Ubuntu
    Description:    Ubuntu 12.04.2 LTS
    Release:    12.04
   Codename:    precise
#cat /proc/version

1. 安装 git

sudo apt-get install git

2.  创建github帐号。略。

3. 在Ubuntu上生成公钥。
    ssh-keygen -C "[email protected]" -f ~/.ssh/github

4.用cat ~/.ssh/github.pub     copy内容,然后paste到SSH上

5.效果类似于下

6.测试本地的权限

至此,可以告一个段落,去创建和维护自己的代码了。

时间: 2024-10-02 05:10:50

github-ssh的相关文章

github ssh key Key is invalid. Ensure you've copied the file correctly解决办法

此错误出现原因是:在github上添加新key时,不正确到拷贝了~/.ssh/id_rsa.pub内容所致.一般发生在linux下,因为windows下用notepa++打开这个文件并复制一般是没有问题的,而linux下使用vim打开再复制就会因为vim添加了回车而导致key添加失败.解决办法是:使用cat命令将.ssh/id_rsa.pub内容输出到终端,再拷贝. Check for SSH keys ls -al ~/.ssh # Lists the files in your .ssh d

Windows10 下 github ssh 访问出现 Permission denied(publickey)错误的解决方法

Windows10 下 github ssh 访问出现 Permission denied(publickey)错误的解决方法. 错误信息: git clone [email protected]:ediwang/envsetup.git Cloning into 'envsetup'... [email protected]: Permission denied (publickey). fatal: Could not read from remote repository. Please

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 key 的配置

哈喽,新年好呀! 今天我又来更新一点github的内容啦~~ windows版本 一.打开git shell,输入指令操作ssh-keygen -t rsa -C "你的注册邮箱",然后回车回车回车,就告诉你公钥和私钥的本地地址啦~~ id_rsa  为私钥 id_rsa.pub  为公钥 私钥本地地址:Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa 公钥本地地址:Your public 

windows下如何github ssh 公钥

http://www.cnblogs.com/igrl/archive/2010/09/17/1829358.html 1. 安装git,从程序目录打开 "Git Bash" 2. 键入命令:ssh-keygen -t rsa -C "[email protected]" "[email protected]"是github账号 3. 提醒你输入key的名称,输入如id_rsa 4. 在C:\Documents and Settings\Admi

windows下如何github ssh 公钥(转)

1. 安装git,从程序目录打开 "Git Bash" 2. 键入命令:ssh-keygen -t rsa -C "[email protected]" "[email protected]"是github账号 3. 提醒你输入key的名称,输入如id_rsa 4. 在C:\Documents and Settings\Administrator\下产生两个文件:id_rsa和id_rsa.pub 5. 把4中生成的密钥文件复制到C:\Docum

使用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下生成github ssh key详解

一.引子: 什么是ssh:ssh是Secure Shell(安全外壳协议)的缩写,建立在应用层和传输层基础上的安全协议.为了便于访问github,要生成ssh公钥,这样就不用每一次访问github都要输入用户名和密码. 二.生成条件: 请在github上先注册账号,本地安装git. 三.生成步骤: 1.本地成功安装了git后,单击鼠标右键,选择Git Bush here,打开git bush. 2. 键入命令:ssh-keygen -t rsa -C "[email protected]&quo

添加github ssh 公钥

1.在控制台输入命令: ssh-keygen -t rsa -C "github上的邮箱地址" 2.将公匙复制后添加到github网站:    id_rsa.pub文件 3.测试是否能够连接,在控制台输入命令: ssh -T [email protected] 原文地址:https://www.cnblogs.com/wuyongyu/p/8151633.html

Windows下设置 ssh key,配置GitHub ssh key

1.新建一个目录,利用git工具打开 Git Bash Here 2.执行如下命令 ssh-keygen -t rsa -C "[email protected]" 其中邮箱为GitHub的邮箱 3.再执行eval  "ssh-agent -s"命令 4.输入ssh-add ~/.ssh/id_rsa 命令时候报错 5.出现上述情况,输入ssh-add ~/.ssh/id_rsa 后,再次执行ssh-add ~/.ssh/id_rsa 后成功 6. 用vim复制ke