0


git本地仓库与远程仓库同步

在学习和工作中,我们经常遇到这样的场景,我们已经在本地创建了一个git仓库,并添加了文件和修改记录。后面你又想在github或者gitlab上新建一个空白git仓库,并且让这2个仓库进行远程同步并且保存之前本地仓库的修改记录。这样一来github或者gitlab上的仓库即可作为备份,又方便多人协作。

具体操作如下:

1.创建本地仓库,使用git管理并添加文件以及修改记录

2.创建Git的远程仓库(可使用GitHub、GitLab、Gitee)

3.打开Git Bash命令行界面,切换目录到本地工作项目路径下,依次输入下面的命令:

//添加主机名为 origin 的远程仓库
git remote add origin 远程仓库地址

//将本地 master 分支推送到 origin主机的 master 分支,如果想推送到分支,把master替换成对应的分支名
git push -u origin master

在进行本地仓库与远程仓库同步过程中,会遇到如下报错:

 ! [rejected]        feature/sc8f6770 -> feature/sc8f6770 (fetch first)
error: failed to push some refs to 'xxx.xxx.com:xxx.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

可以使用以下指令解决冲突:

git pull origin master --allow-unrelated-histories

接着将本地的文件推送上去即可:

git push origin master

执行上述操作之后,就能在远程仓库上看到push上去的文件以及之前在本地仓库的修改记录。

标签: git github

本文转载自: https://blog.csdn.net/linzhish/article/details/126986212
版权归原作者 皮卡兴233 所有, 如有侵权,请联系我们删除。

“git本地仓库与远程仓库同步”的评论:

还没有评论