`
loveq369
  • 浏览: 25625 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

git如何merge github forked repository里的代码更新

    博客分类:
  • git
git 
阅读更多

转自:http://www.haojii.com/2011/08/how-to-git-merge-from-forked-repository/

git如何merge github forked repository里的代码更新?

问题是这样的,github里有个项目ruby-gmail,我需要从fork自同一个项目的另一个repository拿一些Bug Fix的代码
link1:https://github.com/dcparker/ruby-gmail (原作者dcparker的repository)
link2:https://github.com/jihao/ruby-gmail (我从link1 fork的repository)
link3:https://github.com/geoffyoungs/ruby-gmail (geoffyoungs 从link1 fork的repository,然后他有些Bug修改,但是没被merge回原作者的link1的repository)

也就我git clone repository到本地后,发现link3有我想要的代码,我要把link3上的改动merge到我的repository上,避免我花精力改相同的bug

git如何merge github forked repository里的更新?
具体做法是下面三步,以前没用git这么搞过,知道之后其实蛮简单
1. >git remote add geoffyoungs http://github.com/geoffyoungs/ruby-gmail.git
2. >git fetch geoffyoungs
3. >git merge geoffyoungs/master

本地的repository看上去是这样的:
>git remote -v
geoffyoungs http://github.com/geoffyoungs/ruby-gmail.git (fetch)
geoffyoungs http://github.com/geoffyoungs/ruby-gmail.git (push)
origin http://jihao@github.com/jihao/ruby-gmail.git (fetch)
origin http://jihao@github.com/jihao/ruby-gmail.git (push)
>git branch -a
* master
remotes/geoffyoungs/gh-pages
remotes/geoffyoungs/master
remotes/origin/HEAD -> origin/master
remotes/origin/adimircolen-master
remotes/origin/gh-pages
remotes/origin/master

分享到:
评论

相关推荐

    git-course:git和github课程

    - 推送代码:`git push origin <branch>`将本地分支的更改推送到GitHub对应的分支。 4. GitHub协作: - Pull Request:当你在自己的forked仓库上开发并准备好合并时,发起Pull Request,请求原仓库的维护者审查并...

    hyperblog:Platzi的Git和Github课程的精彩博客

    5. **关联远程仓库**:使用`git remote add origin <repository_url>`将本地仓库与GitHub上的仓库关联。 6. **推送更改**:`git push -u origin main`将本地的更改推送到GitHub的主分支(默认为master或main)。 ...

    Github笔记

    - **发起Pull Request**:在本地对代码进行修改后,推送到自己的GitHub仓库,并在GitHub界面发起Pull Request给原项目作者。 - **等待审核**:原项目作者会收到Pull Request的通知,审核通过后会将你的提交合并进主...

    关于GitHub1

    在 GitHub 上,你可以创建、分享和管理你的代码仓库(Repository),与其他开发者进行合作。 1. **仓库(Repository)**: 仓库是 GitHub 上存储项目代码的基本单元。当你想要在 GitHub 上开源一个项目,你需要...

    GWL-elecTRON:guild elecTRON的GitHub研讨会的存储库

    重要的Git命令可贡献给任何存储库分叉此存储库使用以下命令git clone [url of forked repository]到您的系统上: git clone [url of forked repository] 使用命令创建一个新分支git branch [branch-name] 使用命令...

    resume-nextjs:任何人都可以使用Next.js轻松制作的静态HTML简历

    # fork to your github account & git cloning your forked repository npm install 运行开发模式 npm run dev 结构 资产/ 图像,图标 成分/ React组件 页数/ 只有一页用于呈现index.html 。 有效载荷/ 仅通过更改...

    JavaScript_一个项目,旨在帮助您熟悉GitHub上的开源贡献工作流程.zip

    在JavaScript项目中,你可能需要使用Git命令行工具来完成这个步骤,例如`git add`用于暂存更改,`git commit`用于提交更改,并使用`git push`将本地更改推送到你的GitHub仓库。 接下来,你需要发起一个Pull Request...

    git_and_gh_practice

    GitHub则是一个基于云的服务平台,集成了Git的功能,允许用户托管代码仓库、协作开发以及管理项目。本实践教程将深入探讨Git与GitHub的使用,帮助你掌握这两个工具的核心技能。 一、Git基础操作 1. 安装Git:首先...

    github数据库

    2. **仓库(Repository)**:在GitHub上,每个项目都是一个仓库,包含了项目的所有源代码、文档和其他资源。用户可以创建、克隆、 fork 和 pull request仓库来协作开发。 3. **Markdown语言**:GitHub广泛使用...

    vscode-github-actions:VSCode扩展提供了Github Actions YAML支持

    GitHub Actions YAML扩展通过提供Github Actions YAML支持。特征1. YAML验证将架构验证应用于GitHub操作检测错误,例如: 无效的属性值类型超出枚举范围缺少必需的属性意外... # clone your forked repository$ git cl

    leetcode2-Coding:稍微练习编码

    the-name-of-your-forked-repository 3. add upstream for your local repository #git remote add upstream https://github.com/PerthCharles/Coding.git 4. get the newest version of this repository #git ...

    VBSHWWBabyLooper

    recursive git@github.com:<yourgitusername>/VBSHWWBabyLooper.gitcd VBSHWWBabyLoopergit remote add upstream git@github.com:cmstas/VBSHWWBabyLooper.gitgit pull upstream main # to pull changes upstream ...

    creative-code-algorithms-and-techniques

    创意代码算法和技术网站: :fireworks: :sparkler:贡献在GitHub上此项目() 用git clone your-forked-github-repository fork git clone your-forked-github-repository 安装 在项目目录中运行: jekyll serve 在...

    git-idle:通过终端直接从github存储库中列出,克隆和安装依赖项

    正在安装$ npm install -g git-idle如何使用git-idle --help Usage: main < user> [options] CLI to download a repository from a github user and install dependencies Options: -V, --version Output the ...

    scalikejdbc.github.io:ScalikeJDBC官方网站

    在网站目录下更改如何调试: git clone [your forked repository].cd scalikejdbc.github.iogem install bundlerbundle install --path vendor/bundle# bundle exec middleman buildbundle exec middleman server从...

    skinny-framework.github.io:瘦框架官方网站

    在网站目录下更改如何调试: git clone [your forked repository].cd skinny-framework.github.iogem install bundlerbundle installbundle exec middleman server从浏览器访问http://localhost:4567/ 。提出请求...

    swearWeb:TeamSWEAR 网站的存储库

    通过运行 `git clone <repository-url>`,你可以得到一个与远程仓库同步的本地副本,这使得在本地环境进行开发成为可能。 4. **Branching & Merging**:在 Git 中,分支允许你为不同的功能或修复创建独立的开发线。...

    R_assignment:啊啊啊啊

    Clone your forked GitHub repository to your computer so that you can edit the files locally on your own machine. Edit the R file contained in the git repository and place your solution in that file ...

Global site tag (gtag.js) - Google Analytics