1.前言
2.GitHub Linux安装(ubuntu)
3.帐号1配置
4.帐号2配置
5.本地管理
一、前言
本篇博文记录了GitHub的安装配置与多帐号管理。
本文内容基于以下文章:
http://www.runoob.com/w3cnote/git-guide.html (Github 简明教程)
http://m.blog.csdn.net/article/details?id=41824339 (如何在同一台电脑上使用两个github账户)
http://www.tuicool.com/articles/zqa6Rz (如何在同一台电脑上使用两个github账户)
http://achillessatan.github.io/2016/01/29/2016012902/ (【Github】一台电脑使用多个 Github 账户)
http://www.tuicool.com/articles/7nMBVf (多个github帐号的SSH key切换)
http://blog.sina.cn/dpool/blog/s/blog_700aa8830101kdp3.html?vt=4 (windows下使用git及github仓库管理项目 入门)
http://m.blog.csdn.net/article/details?id=9114501 (github新建本地仓库,远程仓库基本用法)
http://m.blog.csdn.net/article/details?id=27706679 (GitHub详细教程)
http://m.blog.csdn.net/article/details?id=11651229 (【Github教程】史上最全github使用方法:github入门到精通)
二、GitHub Linux安装(ubuntu)
在Ubuntu上,可以通过apt来安装git命令行工具
sudo apt-get install git-core
三、帐号1配置
1. 本地创建ssh key:
ssh-keygen -t rsa -C "[email protected]"
后面的[email protected]改为在github上注册的邮箱,之后会要求确认路径和输入密码,使用默认的一路回车就行。
成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。
回到github上,进入 Account Settings(账户配置),左边选择SSH Keys,Add SSH Key,title随便填,粘贴在电脑上生成的key。
2.为了验证是否成功,输入:
ssh -T [email protected]
如果是第一次的会提示是否continue,输入yes就会看到:You‘ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。
四、帐号2配置
1. 为账号2生成SSH Key
ssh-keygen -t rsa -C "your-email-address"
#存储key的时候,不要覆盖现有的id_rsa,使用一个新的名字,比如id_rsa_work
2. 把id_rsa_work.pub加到你的work账号上
3. 把该key加到ssh agent上。由于不是使用默认的.ssh/id_rsa,所以你需要显示告诉ssh agent你的新key的位置
$ ssh-add ~/.ssh/id_rsa_work
# 可以通过ssh-add -l来确认结果
4.配置.ssh/config
加上以下内容
#default github
Host github.com
HostName github.com
IdentityFile ~/.ssh/id_rsaHost github_work
HostName github.com
IdentityFile ~/.ssh/id_rsa_work
5.这样的话,就可以通过使用github.com别名github_work来明确说要是使用id_rsa_work的SSH key来连接github,即使用工作账号进行操作。
#本地建库
$ git init
$ git commit -am "first commit‘#push到github上去
$ git remote add origin [email protected]_work:xxxx/test.git
$ git push origin master
五、本地管理
#本地建库
$ git init
$ git commit -am "first commit‘
$ git clone [email protected]_work:xxxx/test.git
#push到github上去
$ git remote add origin [email protected]_work:xxxx/test.git
$ git push origin master
关于命令可以详见文章: http://gitref.org/zh/remotes/ (Git 参考手册)
注:
在帐号相应文件下执行
$ git config user.name [sub_account.user_name]
$ git config user.email [sub_account.email]