toggle menu
gitlab
jvm
switch theme
search in API
gitlab
/
com.mato.gitlab.api
/
CommitsApi
/
cherryPickCommitDryRun
cherry
Pick
Commit
Dry
Run
@
POST
(
value
=
"projects/{id}/repository/commits/{sha}/cherry_pick"
)
abstract
suspend
fun
cherryPickCommitDryRun
(
@
Path
(
value
=
"id"
)
id
:
String
,
@
Path
(
value
=
"sha"
)
sha
:
String
,
@
Field
(
value
=
"branch"
)
branch
:
String
,
@
Field
(
value
=
"message"
)
message
:
String
?
=
null
,
@
Field
(
value
=
"dry_run"
)
dryRun
:
Boolean
=
true
)
:
Result
<
DryRunResult
>