当前位置:   article > 正文

git配置多用户多平台

git yshop多商户

在Git使用中经常会碰到多用户问题,例如:你在公司里有一个git账户,在github上有一个账户,并且你想在一台电脑上同时对这两个git账户进行操作,此时就需要进行git多用户配置。
首先配置不同的SSH KEY,使用ssh-keygen命令产生两个不同的SSH KEY,进入.ssh目录:

  1. #切换到.ssh目录
  2. cd ~/.ssh
  3. #使用自己的企业邮箱产生SSH KEY
  4. ssh-keygen -t rsa -C "mywork@email.com"
  5. #企业的可以使用id_rsa,也可以自己起名,例如:id_rsa_work
  6. Enter file in which to save the key (/root/.ssh/id_rsa): id_rsa
  7. #将ssh key添加到SSH agent中,该命令如果报错:Could not open a connection to your authentication agent.无法连接到ssh agent,可执行ssh-agent bash命令后再执行ssh-add命令。
  8. ssh-add ~/.ssh/id_rsa

同理,配置自己的github账户,再有其他账户类似:

  1. #切换到.ssh目录
  2. cd ~/.ssh
  3. #使用自己github的注册邮箱产生SSH KEY
  4. ssh-keygen -t rsa -C "mygithub@email.com"
  5. #github的SSH KEY
  6. Enter file in which to save the key (/root/.ssh/id_rsa): id_rsa_github
  7. #将ssh key添加到SSH agent中 ,该命令如果报错:Could not open a connection to your authentication agent.无法连接到ssh agent,可执行ssh-agent bash命令后再执行ssh-add命令。
  8. ssh-add ~/.ssh/id_rsa_github

在生成ssh key之后,需要分别在github的profile中和公司git的profile中编辑SSH KEY,以github为例:

  1. 1. Title,可以随便写:
  2. 2. 将.ssh目录下对应的id_rsa_github.pub中的内容拷到Key中,点击Add SSH key按钮即可。公司的git类似。

然后在.ssh目录下配置config文件:

  1. #切换到.ssh目录
  2. cd ~/.ssh
  3. #创建并编辑config文件
  4. vim config
  5. # 粘贴到config文件中
  6. #公司的git地址
  7. Host git.***.com
  8. User git
  9. Hostname git.***.com #公司的git地址
  10. IdentityFile ~/.ssh/id_rsa #访问公司git的SSH KEY
  11. Port *** #公司的git端口
  12. Host github.com
  13. User git
  14. Hostname github.com #github的地址
  15. IdentityFile ~/.ssh/id_rsa_github #访问github的SSH KEY

测试配置是否成功

  1. #github的地址
  2. ssh -T git@github.com
  3. #出现如下内容,表示成功链接github,***为你的github账户的用户名
  4. Hi ***! You've successfully authenticated, but GitHub does not provide shell access.
  5. #公司的git地址
  6. ssh -T git@git.***.com
  7. #出现如下内容,表示成功链接github,***为公司git账户的用户名
  8. Hi ***! You've successfully authenticated, but GitHub does not provide shell access.

提交代码

本地如果没有项目,git上创建项目仓库并拉取:

  1. git clone git@***:***/git-test.git
  2. cd git-test
  3. touch README.md
  4. git add README.md
  5. git commit -m "add README"
  6. git push -u origin master

本地已有项目,git上创建仓库并拉取

  1. cd 已有项目目录
  2. git init
  3. git remote add origin git@***:***/git-test.git
  4. git add .
  5. git commit
  6. git push -u origin master

转载于:https://www.cnblogs.com/rysinal/p/6381874.html

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

闽ICP备14008679号