summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git_commands/patch.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/git_commands/patch.go')
-rw-r--r--pkg/commands/git_commands/patch.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/commands/git_commands/patch.go b/pkg/commands/git_commands/patch.go
index 749e5dc22..c632e35ae 100644
--- a/pkg/commands/git_commands/patch.go
+++ b/pkg/commands/git_commands/patch.go
@@ -321,7 +321,11 @@ func (self *PatchCommands) PullPatchIntoNewCommit(
// only some lines of a range of adjacent added lines. To solve this, we
// get the diff of HEAD and the original commit and then apply that.
func (self *PatchCommands) diffHeadAgainstCommit(commit *models.Commit) (string, error) {
- cmdArgs := NewGitCmd("diff").Arg("HEAD.." + commit.Sha).ToArgv()
+ cmdArgs := NewGitCmd("diff").
+ Config("diff.noprefix=false").
+ Arg("--no-ext-diff").
+ Arg("HEAD.." + commit.Sha).
+ ToArgv()
return self.cmd.New(cmdArgs).RunWithOutput()
}