We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5cd4ef commit 68cbcf1Copy full SHA for 68cbcf1
contrib/fast-import/git-p4
@@ -789,7 +789,7 @@ class P4Submit(Command, P4UserMap):
789
elif detectCopies != "" and detectCopies.lower() != "false":
790
diffOpts += " -C%s" % detectCopies
791
792
- if gitConfig("git-p4.detectCopiesHarder").lower() == "true":
+ if gitConfig("git-p4.detectCopiesHarder", "--bool") == "true":
793
diffOpts += " --find-copies-harder"
794
795
diff = read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (diffOpts, id, id))
0 commit comments