Tip 03-12-2025
Tips 03-21-2025
怎么拉取github的pr
首先添加上游仓库
git remote add upstream https://github.com/...git
之后,根据pr编号拉取相应的分支:
git fetch upstream pull/251/head:check
git checkout check
首先添加上游仓库
git remote add upstream https://github.com/...git
之后,根据pr编号拉取相应的分支:
git fetch upstream pull/251/head:check
git checkout check