From 8d86091ae3e5b748a3778915a9a420fb280ca3cf Mon Sep 17 00:00:00 2001 From: Markus Olsson Date: Mon, 24 Jun 2024 13:43:48 +0200 Subject: [PATCH] :art: Easier to read this way IMO --- app/src/lib/git/core.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/lib/git/core.ts b/app/src/lib/git/core.ts index d1b29acb22..65382f9c01 100644 --- a/app/src/lib/git/core.ts +++ b/app/src/lib/git/core.ts @@ -485,8 +485,7 @@ export function gitRebaseArguments() { // uses the merge backend even if the user has the apply backend // configured, since this is the only one supported. // This can go away once git deprecates the apply backend. - '-c', - 'rebase.backend=merge', + ...['-c', 'rebase.backend=merge'], ] }