百度360必应搜狗淘宝本站头条
当前位置:网站首页 > IT技术 > 正文

大白话 git 教程-09-远端仓库设置和提交

wptr33 2024-11-06 20:33 61 浏览

到目前为止,我们一直工作在本地仓库,这也是 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 地址


注意,远端仓库的操作非常重要,下个章节继续学习远端仓库的同步操作。

相关推荐

高性能并发队列Disruptor使用详解

基本概念Disruptor是一个高性能的异步处理框架,是一个轻量的Java消息服务JMS,能够在无锁的情况下实现队列的并发操作Disruptor使用环形数组实现了类似队列的功能,并且是一个有界队列....

Disruptor一个高性能队列_java高性能队列

Disruptor一个高性能队列前言说到队列比较熟悉的可能是ArrayBlockingQueue、LinkedBlockingQueue这两个有界队列,大多应用在线程池中使用能保证线程安全,但其安全性...

谈谈防御性编程_防御性策略

防御性编程对于程序员来说是一种良好的代码习惯,是为了保护自己的程序在不可未知的异常下,避免带来更大的破坏性崩溃,使得程序在错误发生时,依然能够云淡风轻的处理,但很多程序员入行很多年,写出的代码依然都是...

有人敲门,开水开了,电话响了,孩子哭了,你先顾谁?

前言哎呀,这种情况你肯定遇到过吧!正在家里忙活着,突然——咚咚咚有人敲门,咕噜咕噜开水开了,铃铃铃电话响了,哇哇哇孩子又哭了...我去,四件事一起来,人都懵了!你说先搞哪个?其实这跟我们写Java多线...

面试官:线程池如何按照core、max、queue的执行顺序去执行?

前言这是一个真实的面试题。前几天一个朋友在群里分享了他刚刚面试候选者时问的问题:"线程池如何按照core、max、queue的执行循序去执行?"。我们都知道线程池中代码执行顺序是:co...

深入剖析 Java 中线程池的多种实现方式

在当今高度并发的互联网软件开发领域,高效地管理和利用线程资源是提升程序性能的关键。Java作为一种广泛应用于后端开发的编程语言,为我们提供了丰富的线程池实现方式。今天,就让我们深入探讨Java中...

并发编程之《彻底搞懂Java线程》_java多线程并发解决方案详解

目录引言一、核心概念:线程是什么?...

Redis怎么实现延时消息_redis实现延时任务

一句话总结Redis可通过有序集合(ZSET)实现延时消息:将消息作为value,到期时间戳作为score存入ZSET。消费者轮询用ZRANGEBYSCORE获取到期消息,配合Lua脚本保证原子性获取...

CompletableFuture真的用对了吗?盘点它最容易被误用的5个场景

在Java并发编程中,CompletableFuture是处理异步任务的利器,但不少开发者在使用时踩过这些坑——线上服务突然雪崩、异常悄无声息消失、接口响应时间翻倍……本文结合真实案例,拆解5个最容易...

接口性能优化技巧,有点硬_接口性能瓶颈

背景我负责的系统到2021年初完成了功能上的建设,开始进入到推广阶段。随着推广的逐步深入,收到了很多好评的同时也收到了很多对性能的吐槽。刚刚收到吐槽的时候,我们的心情是这样的:...

禁止使用这5个Java类,每一个背后都有一段"血泪史"

某电商平台的支付系统突然报警:大量订单状态异常。排查日志发现,同一笔订单被重复支付了三次。事后复盘显示,罪魁祸首竟是一行看似无害的SimpleDateFormat代码。在Java开发中,这类因使用不安...

无锁队列Disruptor原理解析_无锁队列实现原理

队列比较队列...

Java并发队列与容器_java 并发队列

【前言:无论是大数据从业人员还是Java从业人员,掌握Java高并发和多线程是必备技能之一。本文主要阐述Java并发包下的阻塞队列和并发容器,其实研读过大数据相关技术如Spark、Storm等源码的,...

线程池工具及拒绝策略的使用_线程池处理策略

线程池的拒绝策略若线程池中的核心线程数被用完且阻塞队列已排满,则此时线程池的资源已耗尽,线程池将没有足够的线程资源执行新的任务。为了保证操作系统的安全,线程池将通过拒绝策略处理新添加的线程任务。...

【面试题精讲】ArrayBlockingQueue 和 LinkedBlockingQueue 区别?

有的时候博客内容会有变动,首发博客是最新的,其他博客地址可能会未同步,认准...