# 解决冲突
# 新建一个文件夹,用于存放代码,并进入这个文件夹
git clone git@github.com:lukairui/dolphinscheduler-website.git
cd dolphinscheduler-website
# 设置 upstream 分支,追踪 apache 库的修改
git remote add upstream https://github.com/apache/dolphinscheduler-website.git
# 切换到 https://github.com/apache/dolphinscheduler-website/pull/480
git checkout patch-1
# 更新、合并 upstream 最新的修改
git fetch upstream master
git rebase upstream/master
########
# 这个应该有冲突,需要解决冲突
########
# 解决完冲突,并且合并后,推到 github
git push -f