我不知道为什么,但git耐心算法在我的情况下不起作用。 我在谷歌上没有发现任何相关信息,耐心无效。
我在git global config中设置了耐心默认值,我也尝试了命令 git diff --patience file 。
差异看起来总是这样:
return null;
+ }
+
+ public void mymethod() {
+ // some code here
}
我希望如此:
return null;
}
+
+ public void mymethod() {
+ // some code here
+ }
我忽略了什么吗?
我使用Ubuntu 12.04 64位和git版本1.9.3。
编辑:git diff耐心算法的预期行为:http://bramcohen.livejournal.com/73318.html