📜  git update fork from original repo - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:15:18.853000             🧑  作者: Mango

Git Update Fork from Original Repo - Shell-Bash

本文旨在介绍如何在Shell-Bash中使用Git命令来更新一个Fork的Repository以同步原始Repository。

首先,我们需要确保我们的Fork的Repository添加了原始Repository的Remote。可以通过以下命令来检查:

git remote -v

输出应该包含一个"origin" Remote,指向我们的Fork的Repository,以及一个"upstream" Remote,指向原始Repository。例如:

origin  https://github.com/myusername/myrepo.git (fetch)
origin  https://github.com/myusername/myrepo.git (push)
upstream  https://github.com/upstreamusername/myrepo.git (fetch)
upstream  https://github.com/upstreamusername/myrepo.git (push)

如果只有一个"origin" Remote,请添加"upstream" Remote:

git remote add upstream https://github.com/upstreamusername/myrepo.git

接下来,我们需要从"upstream" Remote拉取最新的代码:

git fetch upstream

这将从"upstream" Remote下载最新的代码,但不会合并到我们的Fork的Repository中。

接下来,我们需要确保我们的本地分支是最新的,以免产生冲突:

git checkout master
git merge upstream/master

这将切换到本地的"master"分支,并将从"upstream" Remote拉取的最新代码合并到本地的"master"分支中。

现在,我们可以将本地的"master"分支推送到我们的Fork的Repository中:

git push origin master

这将把本地"master"分支中的最新代码推送到我们的Fork的Repository中。

至此,我们的Fork的Repository已经与原始Repository同步。

结论

通过以上步骤,我们可以使用Git命令在Shell-Bash中更新一个Fork的Repository以同步原始Repository。

这里是一个完整的代码片段,用于更新一个Fork的Repository:

# 检查Remote
git remote -v

# 添加"upstream" Remote
git remote add upstream https://github.com/upstreamusername/myrepo.git

# 拉取最新的代码
git fetch upstream

# 将最新代码合并到本地"master"分支
git checkout master
git merge upstream/master

# 将最新代码推送到Fork的Repository
git push origin master