页面“Debian配置网络”与“多个git账号之间的切换 多个git账号指定不同的key”之间的差异

来自linux中国网wiki
(页面间的差异)
跳到导航 跳到搜索
docker>Evan
 
docker>Evan
(导入1个版本)
 
第1行: 第1行:
<pre>
 
cat  /etc/network/interfaces
 
# This file describes the network interfaces available on your system
 
# and how to activate them. For more information, see interfaces(5).
 
  
source /etc/network/interfaces.d/*
+
多个git账号之间的切换 多个git账号指定不同的key
  
# The loopback network interface
+
ssh可以通过-i使用指定的私钥文件,如:
auto enp0s3 # #设置开机自动连接网络
 
allow-hotplug enp0s3
 
iface enp0s3 inet static #static表示使用固定IP地址上网,dhcp表示使用动态ip
 
address 192.168.88.3  #设置静态ip地址
 
netmask 255.255.255.0 #子网掩码
 
gateway 192.168.88.1  #网关
 
  
auto lo
+
ssh -i ~/mykey_rsa username@host
iface lo inet loopback
 
  
#重启网络不成功
+
但是走ssh协议的git却没有类似的参数可以指定,只能是使用用户默认的ssh私钥。
service networking restart
+
 
 +
而git 一般也是用key认证的,如果你来我一样的情形 ,怎么办 ? 先假设我有两个账号,一个是github上的,一个是公司gitlab上面的。先为不同的账号生成不同的ssh-key
 +
 
 +
ssh-keygen  -t rsa -f ~/.ssh/id_rsa_work -C [email protected]
 +
 
 +
然后根据提示连续回车即可在~/.ssh目录下得到id_rsa_work和id_rsa_work.pub两个文件,id_rsa_work.pub文件里存放的就是我们要使用的key
 +
 
 +
ssh-keygen -t rsa -f ~/.ssh/id_rsa_github -C [email protected]
 +
 
 +
然后根据提示连续回车即可在~/.ssh目录下得到id_rsa_github和id_rsa_github.pub两个文件,id_rsa_gthub.pub文件里存放的就是我们要使用的key
 +
 
 +
编辑 ~/.ssh/config,设定不同的git 服务器对应不同的key
 +
 
 +
在本机添加
 +
<pre>cat ~/.ssh/config
 +
 
 +
Host github.com
 +
  hostname github.com
 +
  User git
 +
  #port 22
 +
  IdentityFile /home/evan/.ssh/id_rsa_github
 +
  IdentitiesOnly yes
 +
 
 +
</pre>
 +
 
 +
#建一个gitlab别名,新建的帐号使用这个别名做克隆和更新
 +
<pre>Host 192.168.11.11
 +
  HostName 192.168.11.11
 +
  User work
 +
  IdentityFile ~/.ssh/id_rsa_work
  
 
</pre>
 
</pre>
  
=my eg=
+
打开 [https://github.com/settings/ssh https://github.com/settings/ssh] 把pub key (id_rsa_github.pub) 添加一下
<pre>
 
# The primary network interface
 
auto enp0s3
 
allow-hotplug enp0s3
 
iface enp0s3 inet static
 
address 192.168.88.68
 
netmask 255.255.255.0
 
gateway 192.168.88.1
 
  
auto lo
+
iface lo inet loopback
 
  
</pre>
+
看到 You’ve successfully 就表示OK了
=参考=
+
 
[https://www.debian.cn/archives/1246 Debian中如何设置静态IP地址 ]
+
多个git账号之间的切换 也可以多个github 帐号 [http://memoryboxes.github.io/blog/2014/12/07/duo-ge-gitzhang-hao-zhi-jian-de-qie-huan/ http://memoryboxes.github.io/blog/2014/12/07/duo-ge-gitzhang-hao-zhi-jian-de-qie-huan/]
 +
 
 +
命令行下的git配置问题: 多个sshkey, 多个用户身份, git alias [http://www.liaohuqiu.net/cn/posts/git-setup-and-setting/ http://www.liaohuqiu.net/cn/posts/git-setup-and-setting/]
 +
 
 +
Git Config 命令查看配置文件 [https://cnbin.github.io/blog/2015/06/19/git-config-ming-ling-cha-kan-pei-zhi-wen-jian/ https://cnbin.github.io/blog/2015/06/19/git-config-ming-ling-cha-kan-pei-zhi-wen-jian/]
 +
 
 +
ssh-keygen -t rsa -f ~/.ssh/id_rsa_evan -C [email protected]
 +
 
 +
[https://www.linuxchina.net/?p=3393 https://www.linuxchina.net/?p=3393]
 +
 
 +
&nbsp;
 +
 
 +
&nbsp;
  
[http://www.voidcn.com/article/p-youlbtpa-bqt.html debian9.x配置网络]
+
[[Category:git]]
  [[category:ops]]
 

2017年1月23日 (一) 09:56的版本

多个git账号之间的切换 多个git账号指定不同的key

ssh可以通过-i使用指定的私钥文件,如:

ssh -i ~/mykey_rsa username@host

但是走ssh协议的git却没有类似的参数可以指定,只能是使用用户默认的ssh私钥。

而git 一般也是用key认证的,如果你来我一样的情形 ,怎么办 ? 先假设我有两个账号,一个是github上的,一个是公司gitlab上面的。先为不同的账号生成不同的ssh-key

ssh-keygen  -t rsa -f ~/.ssh/id_rsa_work -C [email protected]

然后根据提示连续回车即可在~/.ssh目录下得到id_rsa_work和id_rsa_work.pub两个文件,id_rsa_work.pub文件里存放的就是我们要使用的key

ssh-keygen -t rsa -f ~/.ssh/id_rsa_github -C [email protected]

然后根据提示连续回车即可在~/.ssh目录下得到id_rsa_github和id_rsa_github.pub两个文件,id_rsa_gthub.pub文件里存放的就是我们要使用的key

编辑 ~/.ssh/config,设定不同的git 服务器对应不同的key

在本机添加

cat ~/.ssh/config

Host github.com
  hostname github.com
  User git
  #port 22
  IdentityFile /home/evan/.ssh/id_rsa_github
  IdentitiesOnly yes
  
  1. 建一个gitlab别名,新建的帐号使用这个别名做克隆和更新
Host 192.168.11.11
  HostName 192.168.11.11
  User work
  IdentityFile ~/.ssh/id_rsa_work

打开 https://github.com/settings/ssh 把pub key (id_rsa_github.pub) 添加一下

ssh -vT [email protected]

看到 You’ve successfully 就表示OK了

多个git账号之间的切换 也可以多个github 帐号 http://memoryboxes.github.io/blog/2014/12/07/duo-ge-gitzhang-hao-zhi-jian-de-qie-huan/

命令行下的git配置问题: 多个sshkey, 多个用户身份, git alias http://www.liaohuqiu.net/cn/posts/git-setup-and-setting/

Git Config 命令查看配置文件 https://cnbin.github.io/blog/2015/06/19/git-config-ming-ling-cha-kan-pei-zhi-wen-jian/

ssh-keygen -t rsa -f ~/.ssh/id_rsa_evan -C [email protected]

https://www.linuxchina.net/?p=3393