# 添加主仓库到 remote,作为 fork 后仓库的上游仓库 git remote add upstream https://github.com/youzan/vant.git # 拉取主仓库最新代码 git fetch upstream # 切换至 dev 分支 git checkout dev # 合并主仓库代码 git merge upstream/dev
参考
https://segmentfault.com/a/1190000000736629
https://youzan.github.io/vant/#/zh-CN/contribution
# 添加主仓库到 remote,作为 fork 后仓库的上游仓库 git remote add upstream https://github.com/youzan/vant.git # 拉取主仓库最新代码 git fetch upstream # 切换至 dev 分支 git checkout dev # 合并主仓库代码 git merge upstream/dev