Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想合并两个存储库。由于某种原因,合并并不顺利,并产生了很多冲突。其中大多数是由于我在一个版本中更新了组件。
所以我想做的是合并,无论哪里出现冲突,告诉 git 使用较新的版本。否则,合并它需要很长时间。
有没有办法做到这一点?
恐怕那个“较新”的概念有问题:在 Git 中,“树对象”(记录它们引用的 blob 的名称、大小和哈希)不包含这些 blob 的时间戳。因此存在一个逻辑问题,即决定恰好映射到相同文件系统名称的两个(或更多,对于章鱼合并)blob中的哪一个比其他的更新。
你能不能不做一个
git merge -s ours anotherbranch
?