1. git remote add upstream https://github.com/TuSimple/naive-ui.git
    1. # 拉取 upstream 仓库 main 分支最新代码
    2. git fetch upstream main
    3. # 切换分支
    4. git checkout main
    5. # 合并 main 分支最新代码到本地当前分支
    6. git merge upstream/main
    1. # 新功能
    2. git commit -am 'feat(button): add textColor prop'
    3. # bug修复
    4. git commit -am 'fix(button): fix bug for textColor prop'
    5. # 文档修改
    6. git commit -am 'docs(button): add demo for textColor prop'
    7. git push --set-upstream origin branchName