diff --git a/pkg/commands/git.go b/pkg/commands/git.go index 7f9849041..9b4fbd544 100644 --- a/pkg/commands/git.go +++ b/pkg/commands/git.go @@ -1105,7 +1105,7 @@ func (c *GitCommand) FetchRemote(remoteName string) error { } func (c *GitCommand) GetReflogCommits() ([]*Commit, error) { - output, err := c.OSCommand.RunCommandWithOutput("git reflog") + output, err := c.OSCommand.RunCommandWithOutput("git reflog --abbrev=20") if err != nil { return nil, err }