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

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

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

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


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

相关推荐

开发者必看的八大Material Design开源项目

MaterialDesign是介于拟物和扁平之间的一种设计风格,自从它发布以来,便引起了很多开发者的关注,在这里小编介绍在Android开发者当中里最受青睐的八个MaterialDesign开源项...

另类插这么可爱,一定是…(另类t恤)

IT之家(www.ithome.com):另类插图:这么可爱,一定是…OSXMavericks和Yosemite打破了苹果对Mac操作系统传统的命名方式,使用加州的某些标志性景点来替换猫...

Android常用ADB命令(安卓adb工具是什么)

杀死应用①根据包名获取APP的PIDadbshellps|grep应用包名②执行kill命令...

微软Mac版PowerPoint测试Reading Order Pane功能

IT之家5月20日消息,微软公司昨日(5月19日)发布博文,邀请Microsoft365Insiders成员,测试macOS新版PowerPoint演示文稿应用,重点引入...

Visual Studio跨平台开发实战(4):Xamarin Android控制项介绍

前言不同于iOS,Xamarin在VisualStudio中针对Android,可以直接设计使用者界面.在本篇教学文章中,笔者会针对Android的专案目录结构以及基本控制项进行介绍,包...

用云存储30分钟快速搭建APP,你信吗?

背景不管你承认与否,移动互联的时代已经到来,这是一个移动互联的时代,手机已经是当今世界上引领潮流的趋势,大型的全球化企业和中小企业都把APP程序开发纳入到他们的企业发展策略当中。但随着手机APP上传的...

谷歌P图神器来了!不用学不用教,输入一句话,分分钟给结果

Pine发自凹非寺量子位|公众号QbitAI当你拍照片时,“模特不好好配合”怎么办?...

iOS文本编辑控件UITextField和UITextVie

记录一个菜鸟的IOS学习之旅,如能帮助正在学习的你,亦枫不胜荣幸;如路过的大神如指教几句,亦枫感激涕淋!细心的朋友可能已经注意到了,IOS学习之旅系列教程在本篇公众号的文章中,封面已经换成美女图片了,...

Android入门图文教程集锦(android 入门教程)

Android入门视频教程集锦AndroidStudio错误gradientandroid:endXattributenotfound...

如何使用Android自定义复合视图(如何使用android自定义复合视图)

在最近的一个客户应用中,我遇到了一个需求,根据选定的值来生成指定数量的编辑框字段,这样用户可以输入人物信息。最初我的想法是把这些逻辑放到Fragment中,只是根据选中值的变化来向线性布局容器中增加编...

原生安卓开发app的框架frida常用关键代码定位

前言有时候可能会对APP进行字符串加密等操作,这样的话你的变量名等一些都被混淆了,看代码就可能无从下手...

教程10 | 三分钟搞定一个智能输入法程序

一案例描述1、考核知识点网格布局线性布局样式和主题Toast2、练习目标掌握网格布局的使用掌握Toast的使用掌握线性布局的使用...

(Android 8.1) 功能与新特性(android的功能)

和你一起终身学习,这里是程序员AndroidAndroid8.1(API级别27)为用户和开发人员引入了各种新特性和功能。本文档重点介绍了开发人员的新功能。通过本章阅读,您将获取到以下内容:Andr...

怎样设置EditText内部文字被锁定不可删除和修改

在做项目的时候,我曾经遇到过这样的要求,就是跟百度贴吧客户端上的一样,在回复帖子的时候,在EditText中显示回复人的名字,而且这个名字不可以修改和删除,说白了就是不可操作,只能在后面输入内容。在E...

如何阻止 Android 活动启动时 EditText 获得焦点

技术背景在Android开发中,当活动启动时,EditText有时会自动获得焦点并弹出虚拟键盘,这可能不是用户期望的行为。为了提升用户体验,我们需要阻止...