好好风格的博客

一个好风格的博客,分享技术,分享生活,分享经验。

0%

更新Github fork后的项目代码

1. 配置远程的upstream 地址

1
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git

2. 对upstream的代码更新

1
git fetch upstream

3. 进行代码合并

1
git merge upstream/master