工具使用我的收藏GitHub上有趣的资源

Github的SSH KEY配置

2014-10-28  本文已影响13232人  黑夜之旅

生成SSH Key

测试SSH Key登录

Agent admitted failure to sign using the key.
debug1: No more authentication methods to try.
Permission denied (publickey).

上面的错误在某些Linux发行版(比如我的Fedora 17)是一个已知的错误, 可以忽略。
然后会看到打印出公钥的指纹,请确认此指纹和你公钥的一致,然后输入"yes"确认。

" Hi your_name! You've successfully authenticated, but GitHub does not provide shell access."

如果your_name正确显示你的ID,则说明成功设置了SSH公钥.

一台机器上管理多个Github帐号的SSH Key

如果你在一台机器使用两个github账号(比如私人账号abc和工作账号xyz),两个帐号用不同的SSH KEY,还需要编辑一下配置文件~/.ssh/config:

Host personal.github.com  
    HostName github.com  
    User git  
    IdentityFile ~/.ssh/personal_rsa  
    
Host work.github.com  
    HostName github.com  
    User git  
    IdentityFile ~/.ssh/work_rsa  

解释此配置文件:

配置完毕,用下面的命令测试一下:

ssh -T git@personal.github.com
ssh -T git@work.github.com
# 注: @符号后面的"personal.github.com"就是在~/.ssh/config文件中指定的"Host"项

(1)为已经检出的repos指定github账号:

在已经检出的repos目录下执行:

git config  user.name "your-id"
git config  user.email "your-id@gmail.com"

修改.git/config并找到[remote "origin"],修改url的值为:

[remote "origin"]   
    url = git@personal.github.com:user_name/repos_name.git  

其中, personal.github.com就是在配置文件~/.ssh/config中的Host项, 设置完成后, 在这个工程目录git push会自动以此git帐号提交代码。

(2)使用指定账号clone已存在的repos:

  1. 使用指定账号clone一个已经存在的repos:
    git clone git@personal.github.com:user_name/repos_name.git, 上面命令中的"personal.github.com"就是在~/.ssh/config文件中指定的"Host"项, "user_name"是指定提交代码的账户名, 例如:

git clone git@personal.github.com:whatsdjgpp/Vimrc.git
Cloning into 'Vimrc'...

  1. 然后还需要config一下user.name和user.email, 进入repos目录执行:
git config user.name your_name
git config user.email your_email

以后在此repos下git push origin master就是使用指定的用户push.

(3)使用指定账号init新的repos:

如果是新建一个仓储:在github.com创建一个新repos,

$ git init
$ git add .
$ git commit -m "first commit"
$ git remote add origin git@personal.github.com:user_name/testing.git
$ git push -u origin master

上面命令第4行: "personal.github.com"就是在~/.ssh/config文件中指定的"Host"项, "user_name"是指定提交代码的账户名.

参考:

《Quick Tip: How to Work with GitHub and Multiple Accounts》
《Multiple SSH Keys settings for different github account》
《多个github帐号的SSH key切换》
《GitHub: Generating SSH Keys》

上一篇下一篇

猜你喜欢

热点阅读