大白话 git 教程-09-远端仓库设置和提交
wptr33 2024-11-06 20:33 41 浏览
到目前为止,我们一直工作在本地仓库,这也是 git 的特色,不需要中央服务器就能完整的使用 git 所有功能,为了和别人协作开发,必须学习关于远程仓库的知识。
在本地 git init 初始化的仓库中,运行 git remote -v,什么也有没有,因为仓库还没有添加远端的站点,先要找一个存放我们代码的远端仓库,去 github.com 或 gitee.com 注册一个账号,新建一个仓库取名为 git-demo。
创建以后,由于没有选择任何初始化的文件,github 提示了一些命令行操作。
首选有 https 和 ssh 两种选择,https 会通过用户名和密码来访问仓库,而 ssh 依靠我们的公钥来访问方库,推荐使用 ssh 方式,对 ssh 公钥不清楚的请访问 linux 教程-网络操作 这个章节,如果是新注册的用户,先去用户中心把自己的公钥 ~/.ssh/id_rsa.pub 的内容放上去。
现在可以把这个远程的仓库地址添加到本地了,执行下面的命令:
wangbo@wangbo-VirtualBox:~/test/git-demo$ git remote add origin git@github.com:developdeveloper/git-demo.git
wangbo@wangbo-VirtualBox:~/test/git-demo$ git remote -v
origin git@github.com:developdeveloper/git-demo.git (fetch)
origin git@github.com:developdeveloper/git-demo.git (push)
origin 什么意思呢? 它只是这个远端仓库地址的别名而已,你可以取其他的名称,比如可以改成 gitgub:
wangbo@wangbo-VirtualBox:~/test/git-demo$ git remote rename origin github
wangbo@wangbo-VirtualBox:~/test/git-demo$ git remote -v
github git@github.com:developdeveloper/git-demo.git (fetch)
github git@github.com:developdeveloper/git-demo.git (push)
为了习惯呢,还是改回 origin 来讲解,远端仓库地址有了,接下来可以使用 git push 命令把我们本地的仓库推送到远端了,这样别人就能看到了。
wangbo@wangbo-VirtualBox:~/test/git-demo$ git push origin master
......
Enumerating objects: 28, done.
Counting objects: 100% (28/28), done.
Compressing objects: 100% (20/20), done.
Writing objects: 100% (28/28), 2.60 KiB | 444.00 KiB/s, done.
Total 28 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), done.
To github.com:developdeveloper/git-demo.git
* [new branch] master -> master
刷新一下网页发现我们的仓库内容已经同步到了 github 的仓库,有了远端仓库被人怎么使用呢? 首选需要把仓库 clone 成本地仓库:
git clone git@github.com:developdeveloper/git-demo.git // 工作区名称为 git-demo
或
git clone git@github.com:developdeveloper/git-demo.git learn-git // 工作区名称为 learn-git
现在来看看分支的情况,这次需要加一个 a 参数:
wangbo@wangbo-VirtualBox:~/test/git-demo$ git branch -a
feature_print
* master
remotes/origin/master
发现多了一个远程分支 remotes/origin/master。
而在 clone 的仓库 learn-git 里执行 git branch -a 结果如下:
wangbo@wangbo-VirtualBox:~/test/learn-git$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
这里并没有 feature_print 分支,因为 feature_print 分支我们并没有推送到远端,我们可以把它也推上去,执行:
wangbo@wangbo-VirtualBox:~/test/git-demo$ git push origin feature_print
......
To github.com:developdeveloper/git-demo.git
* [new branch] feature_print -> feature_print
wangbo@wangbo-VirtualBox:~/test/git-demo$ git branch -a
feature_print
* master
remotes/origin/feature_print
remotes/origin/master
多了一个远端的分支 remotes/origin/feature_print,切换到 learn-git 工作区,因为分支并不能自动的同步,我们需要执行 git fetch 同步命令才行。
wangbo@wangbo-VirtualBox:~/test/learn-git$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
wangbo@wangbo-VirtualBox:~/test/learn-git$ git fetch
Warning: Permanently added the RSA host key for IP address '13.250.177.223' to the list of known hosts.
From github.com:developdeveloper/git-demo
* [new branch] feature_print -> origin/feature_print
wangbo@wangbo-VirtualBox:~/test/learn-git$ git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/feature_print
remotes/origin/master
怎么获得一个对应的本地 feature_print 分支呢?
wangbo@wangbo-VirtualBox:~/test/learn-git$ git switch feature_print
Branch 'feature_print' set up to track remote branch 'feature_print' from 'origin'.
Switched to a new branch 'feature_print'
wangbo@wangbo-VirtualBox:~/test/learn-git$ git branch -a
* feature_print
master
remotes/origin/HEAD -> origin/master
remotes/origin/feature_print
remotes/origin/master
你也可以使用 git checkout 来操作:
git checkout -b feature_print
或
git checkout -b feature_print origin/feature_print
现在克隆的仓库也有本地的 feature_print 分支了,需要更新 feature_print 上的代码,可以直接输入 git pull,但这个命令其实分为 2 个步骤,第一步是 git fetch 更新远端的代码到本地 remotes/origin/feature_print 分支上,第二步是和本地 remotes/origin/feature_print 分支进行 merge 合并操作,也可以通过 git pull --rebase 指定为 rebase 合并操作,对 merge 和 rebase 不清楚的请参考前面分支合并的章节内容。
现在 git-demo 工作区更新一下 readme.md 文件并推送到远端。
wangbo@wangbo-VirtualBox:~/test/git-demo$ echo add remote info >> readme.md
wangbo@wangbo-VirtualBox:~/test/git-demo$ git add .
wangbo@wangbo-VirtualBox:~/test/git-demo$ git commit -m 'add info'
[feature_print 07f8e9a] add info
1 file changed, 1 insertion(+)
wangbo@wangbo-VirtualBox:~/test/git-demo$ git push origin feature_print
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 286 bytes | 286.00 KiB/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), completed with 1 local object.
To github.com:developdeveloper/git-demo.git
5a8323a..07f8e9a feature_print -> feature_print
切换回 learn-git 工作区,确保你在 feature_print 分支下,执行 git pull --rebase:
wangbo@wangbo-VirtualBox:~/test/learn-git$ git branch
* feature_print
master
wangbo@wangbo-VirtualBox:~/test/learn-git$ git pull --rebase
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (1/1), done.
Unpacking objects: 100% (3/3), 266 bytes | 266.00 KiB/s, done.
remote: Total 3 (delta 1), reused 3 (delta 1), pack-reused 0
From github.com:developdeveloper/git-demo
5a8323a..07f8e9a feature_print -> origin/feature_print
Updating 5a8323a..07f8e9a
Fast-forward
readme.md | 1 +
1 file changed, 1 insertion(+)
Current branch feature_print is up to date.
你已经获得了最新的代码,查看 readme.md 文件确认一下:
wangbo@wangbo-VirtualBox:~/test/learn-git$ cat readme.md
learn git
make changes
add remote info
你已经学会了基本的本地和远端同步内容的方法。关于远端仓库还有一些补充命令:
1. git remote show origin 查看 origin 远端的信息
2. git remote rm origin 可以删除 origin 远端
3. git fetch origin 可以更新 origin 远端的内容
4. git fetch -p 或 git fetch origin -p 如果远端的分支不存在了,本地也删除对应的分支
5. git push origin master 同步到远端是 git push origin master:master 的简写,冒号后面表示远端的分支
6. git push origin --delete feature_print 和 git push origin :feature_print 都可以删除远端的分支,后者理解成把 nothing 推向到远端
7. git push -f origin master 可以强行用本地分支内容覆盖远端的分支内容,因为默认本地分支需要同步远端内容后才能推送到远端
8. git remote set-url origin git@github.com:zhangsan/abc.git 修改远端仓库的 url 地址
注意,远端仓库的操作非常重要,下个章节继续学习远端仓库的同步操作。
相关推荐
- 「网络安全」JAVA代码审计——XXE外部实体注入
-
一、WEB安全部分想要了解XXE,在那之前需要了解XML的相关基础二、XML基础...
- Web前端面试题目及答案汇总(web前端面试题最新)
-
Web前端面试题目及答案汇总来源:极客头条以下是收集一些面试中经常会遇到的经典面试题以及自己面试过程中无法解决的问题,通过对知识的整理以及经验的总结,重新巩固自身的前端基础知识,如有错误或更好的答案,...
- 什么是脚本文件?与可执行文件有什么不同?
-
今天的内容是脚本文件和可执行文件是两种不同类型的计算机文件,它们在结构和执行方式上有显著区别。脚本文件:定义与特性...
- 20个实用Python运维脚本(收藏级)(python 运维工具)
-
系统环境:支持Linux(Ubuntu/CentOS/Debian)和Windows...
- 2026年前每个开发者都应该学习的技能
-
优秀开发者...
- Linux 如何每 5、10、15 或 30 分钟运行一次 Cron 作业?
-
在Linux系统中,Cron是一个强大的工具,用于自动化重复性任务。通过合理配置...
- Shell脚本编程进阶实战:从入门到高效自动化
-
Shell脚本编程进阶实战:从入门到高效自动化一、参数处理进阶:打造专业级CLI工具1.高级参数解析示例...
- 在Bash中按分隔符拆分字符串的方法
-
技术背景在Bash脚本编程中,经常会遇到需要按特定分隔符拆分字符串的需求,例如处理CSV文件、解析日志等。掌握字符串拆分的方法对于数据处理和脚本自动化非常重要。...
- 程序员用5分钟,把一个400多MB的苹果安装包削掉了187MB
-
丰色发自凹非寺量子位|公众号QbitAI前些日子,一个...
- 如何在 Windows 上编写批处理脚本
-
你知道如何使用命令提示符吗?如果这样做,您可以编写一个批处理文件。在最简单的形式中,批处理文件(或批处理脚本)是双击文件时执行的几个命令的列表。批处理文件一直回到DOS,但仍然适用于现代版本的Win...
- 一文搞懂shell脚本(shell脚本应用实战)
-
一文搞懂shell脚本1、shell脚本介绍什么是shell脚本...
- 一文讲清ShellScript脚本编程知识
-
摘要:本文详尽地讲述了ShellScript的基础内容,还有它在Linux系统里的运用情况,涵盖了它的基本语法、常用的命令以及高级的功能。ShellScript可是一种简单又非常实用的编...
- 在Bash脚本中获取自身所在目录的方法
-
技术背景在使用Bash脚本时,有时需要获取脚本自身所在的目录。比如,当脚本作为另一个应用程序的启动器时,需要将工作目录更改为脚本所在的目录,以便对该目录中的文件进行操作。然而,由于脚本的调用方式多样(...
- shell中如何确定脚本的位置?这篇文章告诉你
-
我想从同一个位置读取一些配置文件,如何确定脚本的位置?。这个问题的出现主要是由两个原因引发的:一是您希望将脚本的数据或配置进行外部化,因此需要一种方式来寻找这些外部资源;二是您的脚本需要对某些捆绑资源...
- bash shell 语法(bash命令用法)
-
下面是**Shell(Bash)语法的常用知识点总结**,适合初学者和日常脚本编写参考。内容涵盖变量、判断、循环、函数、重定向、正则、数组等常见用法。---#Shell(Bash)语法速查总结...
- 一周热门
-
-
C# 13 和 .NET 9 全知道 :13 使用 ASP.NET Core 构建网站 (1)
-
因果推断Matching方式实现代码 因果推断模型
-
git pull命令使用实例 git pull--rebase
-
面试官:git pull是哪两个指令的组合?
-
git 执行pull错误如何撤销 git pull fail
-
git pull 和git fetch 命令分别有什么作用?二者有什么区别?
-
git fetch 和git pull 的异同 git中fetch和pull的区别
-
git pull 之后本地代码被覆盖 解决方案
-
还可以这样玩?Git基本原理及各种骚操作,涨知识了
-
git命令之pull git.pull
-
- 最近发表
- 标签列表
-
- git pull (33)
- git fetch (35)
- mysql insert (35)
- mysql distinct (37)
- concat_ws (36)
- java continue (36)
- jenkins官网 (37)
- mysql 子查询 (37)
- python元组 (33)
- mybatis 分页 (35)
- vba split (37)
- redis watch (34)
- python list sort (37)
- nvarchar2 (34)
- mysql not null (36)
- hmset (35)
- python telnet (35)
- python readlines() 方法 (36)
- munmap (35)
- docker network create (35)
- redis 集合 (37)
- python sftp (37)
- setpriority (34)
- c语言 switch (34)
- git commit (34)