github同步代码

  1. git remote -v 查看有没有设置upstream
  2. git remote add upstream 团队项目地址
  3. git remote -v 再次查看是否有upstream的fetch、push
  4. git fetch upstream 获取团队最新版本(相当于stage)
  5. git merge upstream/dev 把上一步获取的最新版本合并