github fork代码同步原仓库的最新代码

方法一:

使用git命令操作

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream

3. Updating your fork from original repo to keep up with their changes:

git pull upstream master

4.push your update

git push

方法二:

直接在github页面进行操作

github fork代码同步原仓库的最新代码_第1张图片
在这里插入图片描述

修改连接为

https://github.com/xxx/xxx/compare/innerpeacez:master...master

意思就是比较项目原仓库和你fork的代码仓库的不同

创建PR到自己的仓库

在这里插入图片描述

github fork代码同步原仓库的最新代码_第2张图片

merge PR

github fork代码同步原仓库的最新代码_第3张图片

github fork代码同步原仓库的最新代码_第4张图片

你可能感兴趣的:(Github)