File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,14 @@ gh combine owner/repo --update-branch
150
150
gh combine owner/repo --no-stats
151
151
```
152
152
153
+ ### Change the Type of Stats Output
154
+
155
+ ``` bash
156
+ gh combine owner/repo --output table # default format
157
+ gh combine owner/repo --output json
158
+ gh combine owner/repo --output plain
159
+ ```
160
+
153
161
### Disable Color
154
162
155
163
``` bash
Original file line number Diff line number Diff line change @@ -126,6 +126,9 @@ func NewRootCmd() *cobra.Command {
126
126
gh combine owner/repo --base-branch main # Use a different base branch for the combined PR
127
127
gh combine owner/repo --no-color # Disable color output
128
128
gh combine owner/repo --no-stats # Disable stats summary display
129
+ gh combine owner/repo --output json # Output stats in JSON format
130
+ gh combine owner/repo --output plain # Output stats in plain text format
131
+ gh combine owner/repo --output table # Output stats in table format (default)
129
132
gh combine owner/repo --combine-branch-name combined-prs # Use a different name for the combined PR branch
130
133
gh combine owner/repo --working-branch-suffix -working # Use a different suffix for the working branch
131
134
gh combine owner/repo --update-branch # Update the branch of the combined PR` ,
You can’t perform that action at this time.
0 commit comments