diff --git a/gitcommands.go b/gitcommands.go index 091a638f8..7d2651eea 100644 --- a/gitcommands.go +++ b/gitcommands.go @@ -267,7 +267,9 @@ func sublimeOpenFile(filename string) (string, error) { } func getBranchDiff(branch string, baseBranch string) (string, error) { - return runCommand("git diff --color " + baseBranch + "..." + branch) + + return runCommand("git log -p -30 --color --no-merges " + branch) + // return runCommand("git diff --color " + baseBranch + "..." + branch) } func verifyInGitRepo() {