From 5240b2862fca22c28ada31ecc7f49c1e2b0075ed Mon Sep 17 00:00:00 2001 From: John Mutuma Date: Fri, 8 Nov 2024 15:40:07 +0000 Subject: [PATCH] Add worktree option to fast forwarding operation --- pkg/commands/git_commands/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/git_commands/sync.go b/pkg/commands/git_commands/sync.go index ab6942d05..056877fbe 100644 --- a/pkg/commands/git_commands/sync.go +++ b/pkg/commands/git_commands/sync.go @@ -101,7 +101,7 @@ func (self *SyncCommands) Pull(task gocui.Task, opts PullOptions) error { WorktreePathIf(opts.WorktreePath != "", opts.WorktreePath). ToArgv() - // setting GIT_SEQUENCE_EDITOR to ':' as a way of skipping it, in case the user + // setting GIT_SEQUENCE_EDITOR to ':' as a way of skipping if, in case the user // has 'pull.rebase = interactive' configured. return self.cmd.New(cmdArgs).AddEnvVars("GIT_SEQUENCE_EDITOR=:").PromptOnCredentialRequest(task).Run() }