Skip to content

Commit

Permalink
feat(preview): pass --summary flag to jj show
Browse files Browse the repository at this point in the history
  • Loading branch information
idursun committed Mar 5, 2025
1 parent afdda9f commit 74a2285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/jj/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func GitPush() CommandArgs {
}

func Show(revision string) CommandArgs {
return []string{"show", "-r", revision, "--color", "always"}
return []string{"show", "-r", revision, "--summary", "--git", "--ignore-all-space", "--color", "always"}
}

func Rebase(from string, to string, source string, target string) CommandArgs {
Expand Down

0 comments on commit 74a2285

Please sign in to comment.