我公司承诺在该分支的一些变化new
。
我结帐出master
。
当我试图合并:
$ git merge new
Auto-merging js/site.js
CONFLICT (content): Merge conflict in js/site.js
Automatic merge failed; fix conflicts and then commit the result.
所以我安装kdiff3和配置我的配置文件,当我试图用mergetools我:
$ git mergetool kdiff3
No files need merging
我跑了diff和它输出这样的:
diff --cc js/site.js
index 8c17d62,7955b13..0000000
--- a/js/site.js
+++ b/js/site.js
@@@ -72,4 -81,18 +81,22 @@@ function doSmallScreen()
$(document).ready(function () {
calculateScreen();
- });
++<<<<<<< HEAD
++});
++=======
+ $(window).resize(function () {
+ delay(function () {
+ calculateScreen();
+ }, 500);
+ });
+ });
+
+
+ var delay = (function () {
+ var timer = 0;
+ return function (callback, ms) {
+ clearTimeout(timer);
+ timer = setTimeout(callback, ms);
+ };
-})();
++})();
++>>>>>>> new
我很困惑,如何解决这个问题,我想解决这个问题的最简单的方式可能的话,我真的不关心,如果我失去了从分支新的信息,但我想知道什么地方出了错,为什么我可以” T选用合并工具。
它只是似乎不可思议,我认为我有一个合并冲突,但没有文件需要合并。