美文网首页
Git 同一电脑配置多个远程仓库

Git 同一电脑配置多个远程仓库

作者: DreamerYZ | 来源:发表于2017-10-11 17:07 被阅读273次

    当一台电脑需要连接多个远程仓库的时候如何配置。如一个仓库需要连接github、另一个仓库需要谅解gitlab、还有一个仓库需要连接gitee等。
    同一电脑配置多个仓库,如果仓库不为同一网站则使用同一个公钥即可。本文讲的是分开配置的方法

    1.配置一个远程仓库

    (1)生成ssh-key

    • 输入如下代码生成一个ssh-key
      ssh-keygen -t rsa -C "yourmail@gmail.com"

    • 一般情况下连续三个回车直接生成ssh-key出现如下方代码

    Generating public/private ecdsa key pair.
    Enter file in which to save the key (/home/username/.ssh/id_ecdsa):
    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    Your identification has been saved in /home/username/.ssh/id_ecdsa.
    Your public key has been saved in /home/username/.ssh/id_ecdsa.pub.
    The key fingerprint is:
    dd:15:ee:24:20:14:11:01:b8:72:a2:0f:99:4c:79:7f username@localhost-2011-12-22
    The key's randomart image is:
    +--[ECDSA  521]---+
    |     ..oB=.   .  |
    |    .    . . . . |
    |  .  .      . +  |
    | oo.o    . . =   |
    |o+.+.   S . . .  |
    |=.   . E         |
    | o    .          |
    |  .              |
    |                 |
    +-----------------+
    
    • 第一个回车后会出现
      Generating public/private rsa key pair.Enter file in which to save the key (/c/Users/Administrator.2017.V.2.12-318/.ssh/id_rsa):
      要求输入想要存储的文件名的位置和名称 ( 如果不输入则名称默认为~/.ssh/id_rsa、如果你仅仅要配置一个帐号,那么我们使用默认名称即可
    • 第二个回车后出现:输入私钥的密码
      Enter passphrase (empty for no passphrase):
    • 第三个回车后:为确认输入私钥的密码
      Enter same passphrase again:
    • 这里直接回车默认设置为无密码,使用默认即可
    • 到这里生成SSH-KEY的事就完成了,你在当前文件夹会看到两个文件:
      id_rsa你的私钥); id_rsa.pub(你的公钥)

    (2) 查看的公钥文件的实际内容,添加到对应的 远程仓库账户中

    cat ~/.ssh/id_rsa.pub

    参数解释

    • 也可以通过如下代码来生成ssh-key
      ssh-keygen -t rsa -f ~/.ssh/id_rsa_x -C "yourmail@xxx.com"
    • -f 后面内容为指定的ssh-key生成的位置和名称
    • -t 参数之后,我们请求建立一个 “RSA” 类型的密钥。RSA 是当前最新并且最安全的一种形式。
    • -C 参数之后,我们提供了一个注释,你可以把它想象为对这个密钥的一种描述或标签。例如使用你的 email 地址。总之,一个能让你之后更容易识别的注释。

    2. 配置多个远程仓库

    生成三个ssh-key

    • 生成三个名称不同ssh-key
      分别命名为id_rsa_github;id_rsa_github2;id_rsa_github;id_rsa_gitee
    # 可以采用如下方式 在第一个回车后输入名称
    ssh-keygen -t rsa -C "yourmail@gmail.com
    Generating public/private rsa key pair.
    Enter file in which to save the key (/Users/QuQu/.ssh/id_rsa): id_rsa_gitlab
    

    编辑config文件,配置不同的仓库指向不同的密钥文件

    • 如果没有则在~/.ssh文件夹下新建 config文件
    • windows 在Window进入C:/Users/你的用户名/.ssh文件夹,右键新建一个文本文件,改名为config即可。这里要注意,没有.ssh文件夹的要新建一个.ssh名的文件夹。
    • Linux进入.ssh文件夹:cd ~/.ssh,新建config文件:touch config;或者:touch ~/.ssh/config。这里要注意,没有.ssh文件夹的要新建一个.ssh名的文件夹。
    • 添加如下内容
    # github配置
    Host github.com(可更改)// 主机名字,不能重名
        HostName github.com// 主机所在域名或IP
        User git// 用户名称
        PreferredAuthentications publickey
        IdentityFile ~/.ssh/id_rsa_github// 私钥路径
    # github配置(第二个与第一个不是一个仓库但是同为github)
    Host github2.com(可更改)// 主机名字,不能重名
        HostName github.com// 主机所在域名或IP
        User git// 用户名称
        PreferredAuthentications publickey
        IdentityFile ~/.ssh/id_rsa_github2// 私钥路径
    
    # gitlab配置
    Host gitlib.com(可更改)
        HostName gitlab.xxx.com(gitlab仓库域名)
        User  git
        PreferredAuthentications publickey
        IdentityFile ~/.ssh/id_rsa_github
    # gitee配置
    Host gitee.com(可更改)
        HostName gitee.com
        User  git
        PreferredAuthentications publickey
        IdentityFile ~/.ssh/id_rsa_github
    

    清空本地的 SSH 缓存,添加新的 SSH 密钥 到 SSH agent中

    • 这里如果你用的github官方的bash,ssh-agent -s,如果是其他的,比如msysgit,eval $(ssh-agent -s)
    # 如果在.ssh目录下可省略文件路径 :ssh-add id_rsa_github
    ssh-add -D
    ssh-add ~/.ssh/id_rsa_github
    ssh-add ~/.ssh/id_rsa_gitlab
    

    测试 ssh 链接

    ssh -T git@github.com
    ssh -T git@github2.com
    ssh -T git@gitee.com
    ssh -T git@gitlab.com
    # xxx! You’ve successfully authenticated, but GitHub does not provide bash access.
    # 出现上述提示,连接成功
    

    取消 git 全局用户名/邮箱的设置,设置独立的 用户名/邮箱

    # 取消全局 用户名/邮箱 配置
    $ git config --global --unset user.name
    $ git config --global --unset user.email
    # 进入项目文件夹,单独设置每个repo 用户名/邮箱
    $ git config user.email "xxxx@xx.com"
    $ git config user.name "xxxx"
    

    命令行进入项目目录,重建 origin (whatever 为相应项目地址)

    $ git remote rm origin
    # 远程仓库地址,注意Host名称
    $ git remote add origin git@second.github.com:githubUserName/repName.git
    $ git remote -v # 查看远程
    
    # ssh -vT git@github.com可以打印log 通过此方法可以debug如果连接不成功
    

    原理分析

    1. ssh 客户端是通过类似 git@github.com:githubUserName/repName.git 的地址来识别使用本地的哪个私钥的,地址中的 User 是@前面的git, Host 是@后面的github.com
    2. 如果所有账号的 User 和 Host 都为 git 和 github.com,那么就只能使用一个私钥。所以要对User 和 Host 进行配置,让每个账号使用自己的 Host,每个 Host 的域名解析到 github.com,如上面配置中的Host gitlab.com。
    3. 配置了别名之后,新的地址就是user@host:repName/repName.git(在添加远程仓库时使用)。
      这样 ssh 在连接时就可以区别不同的账号了。

    使用新的公私钥

    • 情景1:使用新的公私钥进行克隆操作
    git clone git@gitlab.com:username/repo.git 
    注意此时要把原来的github.com配置成你定义的github
    
    • 情景2:已经克隆,之后才添加新的公私钥,我要为仓库设置使用新的公私钥进行push操作
    修改仓库的配置文件:.git/config 为
    [remote "origin"]
        url = git@gitlab.com:gitlabUserName/repName.git
    

    相关文章

      网友评论

          本文标题:Git 同一电脑配置多个远程仓库

          本文链接:https://www.haomeiwen.com/subject/jwuwyxtx.html