git 常用操作:

git remote -v # 查看 remote 分支
git remote add upstream <git-url>
git fetch upstream
git merge upstream/main
git push origin main