我正在尝试从 Perforce 转换为 git,并使用 and 复制了 Perforce 存储git p4 clone //depot/path/to/project/...@all project
库git push ssh://git@example.com:7999/project.git master
。
现在我想让 git 存储库与 Perforce 存储库保持同步。工程师只提交到 Perforce 存储库。当我:
$ git clone ssh://git@example.com:7999/project.git
$ cd project
$ git p4 sync //depot/path/to/project/...@all
$ git p4 rebase
它抱怨合并冲突。我不明白为什么应该存在合并冲突,因为 git 存储库本身不应该发生任何更改。需要做什么来解决这个问题?