1. 将远程仓库的代码拉取到本地
    git fetch --all
    # 或者
    git fetch origin
    
  2. 强制拉取远程仓库的某个分支覆盖本地代码
    git reset --hard origin/branch_name