git status or repo sync . 时看到如下的提示: error: packages/apps/app/: branch alpha is published (but not merged) and is now commits behind 表明,在本地有个提交,但还没有merge,但是其他人已经在你提交之后,有新的提交,而且一般此情况下,会有冲突的. 运行: git rebase alpha remote/alpha 此时,如果有冲突的话,会提示哪些文件存在冲突,这时,如…