您好,登录后才能下订单哦!
本篇内容介绍了“怎么将代码同时提交到Github和码云Gitee上”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
本文目录:
多个远程仓库在项目中很少使用,但Git本身是支持的。
那让我们跟着一个案例来温习一下Git命令吧:案例代码已经在Github中托管了,现在要增加Gitee远程仓库。
先来查看下当前项目的远程仓库
git remote
不出意外,应该会输出:
origin
这个origin
就是一个指向远程仓库的名称,是你在clone
时 git
为你默认创建的。
可以通过命令查看origin
指向的远程仓库地址:
git remote -v
输出结果:
origin https://github.com/gozhuyinglong/blog-demos.git (fetch) origin https://github.com/gozhuyinglong/blog-demos.git (push)
该命令会显示读写远程仓库的名称和地址,我这里指向的是Github。
既然这个地址是Github,为了好识别,就将名称改成 github 吧。输入命令: git remote rename <old_remote> <new_remote>
git remote rename origin github
输入查看远程仓库命令,验证下是否成功,输出结果:
github https://github.com/gozhuyinglong/blog-demos.git (fetch) github https://github.com/gozhuyinglong/blog-demos.git (push)
成功!
下面我们再添加Gitee上的远程仓库,首先在Gitee上创建一个空的仓库,名称与Github上相同。
然后在【克隆/下载】处复制地址。
输出添加远程仓库命令: git remote add <remote> <url>
git remote add gitee https://gitee.com/gozhuyinglong/blog-demos.git
再来验证下是否成功,输出结果:
gitee https://gitee.com/gozhuyinglong/blog-demos.git (fetch) gitee https://gitee.com/gozhuyinglong/blog-demos.git (push) github https://github.com/gozhuyinglong/blog-demos.git (fetch) github https://github.com/gozhuyinglong/blog-demos.git (push)
成功!
有了多个远程仓库,推送和拉取再也不能像以前那样git push
和git pull
了,必须得加上远程仓库的名称,以识别操作的是哪个远程仓库。命令如下: git push <remote> <branch>
、git pull <remote> <branch>
:
git push github main git pull github main git push gitee main git pull gitee main
如果不想每次操作都带着分支,需要将本地分支与远程分支进行关联: git branch --set-upstream-to=<remote>/<remote_branch> <local_branch>
git branch --set-upstream-to=gitee/main main
关联后就可以不指定分支了
git push github git pull github git push gitee git pull gitee
如果想要移除一个远程仓库,可以使用下面命令: git remote remove <remote>
或git remote rm <remote>
git remote remove gitee
执行移除远程仓库后,该仓库在本地的所有分支与配置信息也会一并删除。
在执行上面操作当然不是一帆风顺的,如果你遇到一些错误,这里可能有你想要的答案。
当在拉取时报下面错误:
You asked to pull from the remote 'gitee', but did not specify a branch. Because this is not the default configured remote for your current branch, you must specify a branch on the command line.
表示本地分支与远程分支未做关联,进行关联一下即可,执行下面命令: git branch --set-upstream-to=<remote>/<remote_branch> <your_branch>
git branch --set-upstream-to=gitee/main main
当执行推送操作时,提示下面信息:
remote: You do not have permission push to this repository fatal: unable to access 'https://gitee.com/gozhuyinglong/blog-demos.git/': The requested URL returned error: 403
表示没有远程仓库的权限,应该首先查看远程仓库是否公开,再检查本地账号和密码是否正确。
登录Gitee,检查该代码库是否公司。若未公开,则设置为公开。
打开控制面板,点击【用户账户】
再点击【管理Windows凭据】
找到你的账号,修改账号和密码即可。
你也可以直接将Windows凭据删掉,当执行推送命令后,会弹出Windows安全中心登录框。
输入你的账号或密码就可以了。
如果无法弹出Windows安全中心登录框,则将其卸载掉,执行下面命令:
git credential-manager uninstall
再重新下载并安装,下载地址: https://github.com/microsoft/Git-Credential-Manager-for-Windows/releases
如下图所示,当你每次push
代码时,都会弹出下面登录框。
我们可以将远程地址改为SSH地址:
移除现在的github地址,重新添加ssh地址,具体代码参照上文。
添加好地址后,还需要在github上设置SSH Key
输入下面命令来生成SSH Key,双引号内填写你的登录邮箱地址
ssh-keygen -t rsa -C "xxxxx@xxxxx.com"
如果弹出下面提示,直接回车即可。(若已存在,会提示是否替换,输入Y再回车)
会在你的磁盘目录【C:\Users\你的用户名.ssh\】中生成公钥,将文件【id_rsa.pub】中的内存拷贝。
打开github的【SSH and GPG keys】页面,添加即可:
“怎么将代码同时提交到Github和码云Gitee上”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。