当前位置:   article > 正文

Git同时配置Gitee和GitHub_git配置gitee和github

git配置gitee和github
一、清除git的全局设置

通过git config --global --list来查看是否设置过。

git config --global --unset user.name "你的名字"
git config --global --unset user.email "你的邮箱"
  • 1
  • 2
二、生成新的 SSH keys

GitHub 的钥匙

ssh-keygen -t rsa -f ~/.ssh/id_rsa.github -C "你的邮箱"
  • 1

疯狂回车即可。

Gitee 的钥匙

ssh-keygen -t rsa -f ~/.ssh/id_rsa.gitee -C "你的邮箱"
  • 1

疯狂回车即可。

完成后会在~/.ssh / 目录下生成以下文件。

  • id_rsa.gitee
  • id_rsa.gitee.pub
  • id_rsa.github
  • id_rsa.github.pub
三、 识别 SSH keys 新的私钥

默认只读取 id_rsa,为了让 SSH 识别新的私钥,需要将新的私钥加入到 SSH agent 中

ssh-agent bash
ssh-add ~/.ssh/id_rsa.github
ssh-add ~/.ssh/id_rsa.gitee
  • 1
  • 2
  • 3
四、多账户配置config文件

创建config文件

touch ~/.ssh/config 
  • 1

config 中填写的内容

# github
Host github.com
    HostName github.com
    User git
    IdentityFile ~/.ssh/id_rsa.github

# gitee
Host gitee.com
    Port 22
    HostName gitee.com
    User git
    IdentityFile ~/.ssh/id_rsa.gitee
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
五、添加ssh

https://github.com/settings/keys

id_rsa.github.pub 中的内容赋值进去。

https://gitee.com/profile/sshkeys

id_rsa.gitee.pub 中的内容复制进去。

六、测试
ssh -T git@gitee.com 
 输入 yes 按回车
ssh -T git@github.com
 输入 yes 按回车
  • 1
  • 2
  • 3
  • 4
七、项目配置

查看是否配置了当前项目的用户名和邮箱,git commit 和push是否需要用到这俩

image-20230510213158783

需要配置当前项目的用户名和邮箱
git config user.name "你的名字"
git config user.email "你的邮箱"
配置当前的remote 为ssh
git remote -v
git remote rm origin
git remote add origin [url]
后续即可以正常add,commit, push了
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

参考资料: https://cloud.tencent.com/developer/beta/article/1774890

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/566980
推荐阅读
相关标签
  

闽ICP备14008679号