You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/cmd/projectbranch.go
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -135,6 +135,16 @@ var projectsBranchesRebase = cli.Command{
135
135
DefaultText: "main",
136
136
QueryPath: "base",
137
137
},
138
+
&requestflag.Flag[string]{
139
+
Name: "commit-message",
140
+
Usage: "Optional commit message to use when `files` is provided.",
141
+
BodyPath: "commit_message",
142
+
},
143
+
&requestflag.Flag[map[string]any]{
144
+
Name: "files",
145
+
Usage: "File contents to commit directly on top of `base`. When provided,\nthe auto-rebase is skipped and the branch is hard-reset to `base`\nbefore the files are committed.",
0 commit comments