Published on

git

Authors

同步 fork 仓库的代码到当前仓库

# 在一个fork的项目中添加原来的 remote git
# 在git中添加一个新的remote指向原始的仓库。在你的本地开发环境中执行此git命令
git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git

# 获取原始仓库的更新
git fetch upstream

# 同步原来仓库的最新代码到当前
git pull upstream main

# 如果是始祖不同的两个git仓库则需要添加特殊的声明
git pull upstream main --allow-unrelated-histories