toggle menu
gitlab
jvm
switch theme
search in API
gitlab
/
com.mato.gitlab.api
/
CommitsApi
/
listRepositoryCommits
list
Repository
Commits
@
GET
(
value
=
"projects/{id}/repository/commits"
)
abstract
suspend
fun
listRepositoryCommits
(
@
Path
(
value
=
"id"
)
id
:
String
,
@
Query
(
value
=
"ref_name"
)
refName
:
String
?
=
null
,
@
Query
(
value
=
"since"
)
since
:
String
?
=
null
,
@
Query
(
value
=
"until"
)
until
:
String
?
=
null
,
@
Query
(
value
=
"path"
)
path
:
String
?
=
null
,
@
Query
(
value
=
"author"
)
author
:
String
?
=
null
,
@
Query
(
value
=
"all"
)
all
:
Boolean
?
=
null
,
@
Query
(
value
=
"with_stats"
)
withStats
:
Boolean
?
=
null
,
@
Query
(
value
=
"first_parent"
)
fistParent
:
String
?
=
null
,
@
Query
(
value
=
"order"
)
order
:
String
?
=
null
,
@
Query
(
value
=
"trailers"
)
trailers
:
Boolean
?
=
null
)
:
Result
<
List
<
Commit
>
>