Git全解析之远程仓库交互

文章目录

  1. 1. Git全解析之远程仓库交互

    1. 1.1. 中央仓库的概念
    2. 1.2. 本地分支与远程分支
    3. 1.3. pull与fetch
    4. 1.4. 关于捐赠

Git全解析之远程仓库交互

中央仓库的概念

虽然说git是分布式版本控制工具,但同样有远程仓库的概念。出于各种目的,我们有时需要有一个共享的远程仓库,如GitHub上的仓库,我们公司项目中用来测试和部署的仓库等。
一般的操作步骤是先在公共服务器上创建一个仓库,然后每个开发人员都clone这个仓库进行各自的开发,开发完成后再push到远程仓库进行测试部署。

从远程仓库clone项目:

1234567
[[email protected] gitwork]$ [[email protected] gitwork]$ git clone [email protected]:wustrive2008/gittest.gitInitialized empty Git repository in /home/centos/gitwork/gittest/.git/remote: Counting objects: 4, done.remote: Compressing objects: 100% (3/3), done.remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0Receiving objects: 100% (4/4), 4.15 KiB, done.

上面示例的远程仓库在github上,当然如果我们做的是公司的项目,出于安全性和访问效率的考虑很少会将公司的私有项目放到github上。一般的做法是搭建自己的git服务器,这里推荐两种git服务器工具:

  1. Gitolite
  2. GitLab

这两个工具网上都有很多教程。

说明:github也有付费的企业版,试用过,也很好用

本地分支与远程分支

平时我们使用 git branch 查看的都是本地分支,如:

12
[[email protected] gittest]$ git branch* master

但是当需要经常与中央仓库同步代码时,特别是分支很多时,需要查看本地当前有哪些远程分支的引用,比便于在不同的分支之间进行切换开发。关于git分支的较好实践可以参考:git flow
查看远程分支的引用

12345
[[email protected] gittest]$ [[email protected] gittest]$ git branch -a* master  remotes/origin/HEAD -> origin/master  remotes/origin/master

上面的结果表示:
当前本地有一个master分支,并且有一个remotes/origin/master(远程master)分支的引用,至于remotes/origin/HEAD分支可以理解为origin/master分支的一个引用。
其中origin为远程仓库引用的别名,此名称可以修改,也可以有多个,可以参考git remote命令了解更多

接下来在本地创建一个develop分支,用于正常的开发流程:

12345678910
[[email protected] gittest]$ git checkout -b developSwitched to a new branch ‘develop‘[[email protected] gittest]$ git br* develop  master[[email protected] gittest]$ git br -a* develop  master  remotes/origin/HEAD -> origin/master  remotes/origin/master

在develop分支上进行开发,并提交:

123456
[[email protected] gittest]$ touch file1.txt[[email protected] gittest]$ git add .[[email protected] gittest]$ git commit -am "create file file1.txt"[develop 21053d7] create file file1.txt 0 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 file1.txt

开发完成后将develop分支推送到服务器:

1234567
[[email protected] gittest]$ git push origin Counting objects: 4, done.Compressing objects: 100% (2/2), done.Writing objects: 100% (3/3), 311 bytes, done.Total 3 (delta 0), reused 0 (delta 0)To [email protected]:wustrive2008/gittest.git   8a9a114..21053d7  develop -> develop

接下来正常的流程是测试人员拉取到远程的develop分支,然后对develop分支上提交的内容进行测试,测试通过后,合并到master分支,最后推送到部署服务器进行上线部署。

1234567891011
[[email protected] gittest]$ git checkout masterSwitched to branch ‘master‘[[email protected]gon gittest]$ git merge developUpdating 8a9a114..21053d7Fast-forward 0 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 file1.txt[[email protected] gittest]$ git push origin masterTotal 0 (delta 0), reused 0 (delta 0)To [email protected]:wustrive2008/gittest.git   8a9a114..21053d7  master -> master

pull与fetch

如果要拉取远程仓库的代码,需要用到pull与fetch命令
这两个命令的区别是pull=fetch+merge

先来演示一下git pull,有其他开发者已经在develop分支上提交了新的内容,现在需要同步到本地

1234567891011121314151617181920212223242526272829303132333435363738394041424344
[[email protected] gittest]$ git br* develop  master[[email protected] gittest]$ git logcommit 21053d768d7af0c5cf90f63dc105891726094b43Author: wubaoguo <[email protected]126.com>Date:   Mon Jan 11 22:35:50 2016 +0800

    create file file1.txt

commit 8a9a114ecbacfd5555ee417ab1dbe02a20db9a03Author: wubaoguo <[email protected]>Date:   Mon Jan 11 22:08:39 2016 +0800

    Initial commit[[email protected] gittest]$ git pull origin developremote: Counting objects: 2, done.remote: Compressing objects: 100% (2/2), done.remote: Total 2 (delta 1), reused 1 (delta 0), pack-reused 0Unpacking objects: 100% (2/2), done.From github.com:wustrive2008/gittest * branch            develop    -> FETCH_HEADUpdating 21053d7..2296978Fast-forward 0 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 file2.txt[[email protected] gittest]$ git logcommit 22969782f467cd04410c9ed3cf5c80e3987d212bAuthor: wubaoguo <[email protected]126.com>Date:   Mon Jan 11 22:52:18 2016 +0800

    create file file2.txt

commit 21053d768d7af0c5cf90f63dc105891726094b43Author: wubaoguo <[email protected]126.com>Date:   Mon Jan 11 22:35:50 2016 +0800

    create file file1.txt

commit 8a9a114ecbacfd5555ee417ab1dbe02a20db9a03Author: wubaoguo <[email protected]>Date:   Mon Jan 11 22:08:39 2016 +0800

    Initial commit

很清楚的看到,新的代码已经拉取并合并到本地了,可以基于最新的代码进行开发了。

如果开发者B说他向远程仓库推送了新的分支fixbug,需要你在此基础上继续修改bug,可以这样做

1234567891011121314151617181920
[[email protected] gittest]$ git br -a     #可以看到这时本地并没有新的分支与引用* develop  master  remotes/origin/HEAD -> origin/master  remotes/origin/develop  remotes/origin/master[[email protected] gittest]$ git fetch    #拉取远程所有的变动remote: Counting objects: 3, done.remote: Compressing objects: 100% (1/1), done.remote: Total 3 (delta 1), reused 3 (delta 1), pack-reused 0Unpacking objects: 100% (3/3), done.From github.com:wustrive2008/gittest   21053d7..2296978  develop    -> origin/develop * [new branch]      fixbug     -> origin/fixbug   #注意这里拉取到一个新分支[[email protected] gittest]$ git br  #这时本地并没有fixbug分支* develop  master[[email protected] gittest]$ git checkout fixbug  #创建并切换到fixbug分支,引用origin/fixbug分支Branch fixbug set up to track remote branch fixbug from origin.Switched to a new branch ‘fixbug‘

与远程仓库的交互操作基本就这些,还有一点要注意,推送之前最好先拉取一下,因为如果远程分支版本比本地新,直接推送会失败。

时间: 2024-10-10 10:29:28

Git全解析之远程仓库交互的相关文章

git提交代码至远程仓库

代码提交 代码提交一般有五个步骤: 1.查看目前代码的修改状态 2.查看代码修改内容 3.暂存需要提交的文件 4.提交已暂存的文件 5.同步到服务器 1.     查看目前代码的修改状态 提交代码之前,首先应该检查目前所做的修改,运行git status命令 a)        已暂存 (changes to be committed) new file //表示新建文件 modified //表示修改文件 deleted //表示删除文件 b)       已修改 (changed but n

git使用小结二: git的分支和远程仓库

上一篇文章介绍了git的本地基本操作,如果你不需要和他人协作,比如说你自己写一本书,自己写一个小程序,自己写个网站等等,那么已经差不多够用了.但是分享和协作才是自由世界的主题,git也正是为此而生,所以努力成为一个热爱分享和协作的同学吧!^_^ git的仓库的概念可以理解为git管理的那个文件夹,而git远程仓库可以理解为存放在服务器上的大家都可以用git访问的一个git管理的文件夹.(原谅我的大白话,虽然事实必定比这种解释高大上,不过我个人感觉这么理解也无伤大雅-)而要理解远程仓库,就需要理解

git绑定两个远程仓库

最近在做公司项目,之前公司项目统一托管在codding 码云,最近我想把项目与自己的gitlab私人仓库再连接一下,作为自己作品收录的地方,这里总结一下用到的git命令及问题. 1.首先, 找到当前已绑定码云的项目的.git中的config配置文件, 可以看到有一个远程仓库 remote 名叫origin,最快最方便的方法: [remote "gitlab"] url = [email protected]:xxxxx/xxxxx.git fetch = +refs/heads/*:r

【Eclipse中使用Git之一】把远程仓库的项目,clone到eclipse里面

[Eclipse中使用Git之一]把远程仓库的项目,clone到eclipse里面 2015-01-29 19:25 15779人阅读 评论(1) 收藏 举报 .embody { padding: 10px 10px 10px; margin: 0 -20px; border-bottom: solid 1px #ededed } .embody_b { margin: 0; padding: 10px 0 } .embody .embody_t,.embody .embody_c { disp

git查看添加删除远程仓库

查看远程仓库 git remote -v 删除远程仓库 git remote remove origin 添加远程仓库 git remote add origin 仓库地址 原文地址:https://www.cnblogs.com/haws/p/gitRemote.html

git连接不上远程仓库---visualstudio提交代码报错:no upstream configured for branch &#39;master&#39;

1,新建文件夹,在文件下下鼠标右键git bush--->git init,初始化仓库: 2,设置gitthub仓库地址:git remote add origin https://github.com/z*****g/lm.git 3,git pull origin master 4,git push --set-upstream origin master,关联一个远程分支,并从这个分支上传下带代码 git branch查看分支 git add . git commit -m "提交注

本地项目git初始化并提交远程仓库

1.先在远程仓库(如github)创建项目,为了避免错误,不要初始化 README, license, 或者gitignore文件 . 2.打开Terminal终端 3.切换到你的本地项目目录 4.初始化本地仓库 git init 5.添加文件到本地仓库 git add . 6.提交文件 git commit -m "First commit" 7.到远程仓库的页面上,复制仓库地址 (笔者以配置好ssh,故复制ssh形式的仓库地址) 8.添加远程仓库地址到本地仓库 git remote

Git与远程仓库交互,拉取与提交数据

一.项目维护者建立一个中心数据远程仓库,用git init 初始化一个仓库. 二.其他developer,以该数据仓库为中心,提交各自的代码供项目维护者确认. ## 建立对远程仓库的镜像:## git remote add Wiki [email protected]:/project/ ## 拉取数据到本地:## git pull 这个命令会直接将远程仓库的分支合并到当前分支,没有经过developer确认,不人性化. 2.git fetch 这个命令将远程数据拉取到本地,可经过确认后再合并,

Git 之四 通信协议(HTTPS、SSH、Git)、使用远程仓库(GitHub、GitLab、Gitee等)

写在前面   Git 的官网上有很详细的使用教程(当然有翻译版本),具体地址是 https://git-scm.com/book/zh/v2.唯一不足就是,很多讲解并没有实机演示.但是,毫无疑问,官网资料是最全面的!如果有任何疑问,可以去官网看看! 协议   Git 通常也会有个远程仓库.用来协调各个参与者的工作!这与上一代集中式版本控制系统的作用基本类似.一个远程仓库通常只是一个裸仓库(bare repository),即一个没有当前工作目录的仓库. 因为该仓库仅仅作为合作媒介,不需要从磁盘检