赞
踩
针对一台电脑上操作多个Github、Gitlab等账号的说明如下。
目前公司电脑上配置了两个账号,一个是公司内部的Gitlab账号,一个是我个人的Gitlab账号
如何在同一台电脑上对不同项目推送到不同的git账号上的操作说明如下:
- git config --local user.name "个人github账号名"
- git config --local user.email "个人github账号邮箱"
-
- #例如
- git config --local user.name "xiaohong"
- git config --local user.email "xiaohong@qq.com"
提交项目到不同的账户操作说明
比如提交到xiaohong这个账户上
git init
git@xiaohong.gitlab.com:others/factorytest/vdtools-desktop.git
git branch -M main
git pull --rebase origin master
- git add .
- git commit -m "任意内容"
git push -u origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。