From 91396767b8e8999405a0ec3ece7bf1865a008070 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 5 Oct 2020 10:10:55 -0700 Subject: [PATCH] ensure large amount of renames doesnt break git log --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 724afa2..67739cb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -238,7 +238,7 @@ function createCommand( options: GitlogOptions ) { // Start constructing command - let command = "git log "; + let command = "git log -l0 "; if (options.findCopiesHarder) { command += "--find-copies-harder ";