mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-12 20:40:37 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -5649,7 +5649,7 @@ Name | Type | Description | Notes
|
||||
|
||||
<a name="repoGetAllCommits"></a>
|
||||
# **repoGetAllCommits**
|
||||
> List<Commit> repoGetAllCommits(owner, repo, sha, path, stat, page, limit, not)
|
||||
> List<Commit> repoGetAllCommits(owner, repo, sha, path, stat, verification, files, page, limit, not)
|
||||
|
||||
Get a list of all commits from a repository
|
||||
|
||||
@@ -5710,11 +5710,13 @@ String repo = "repo_example"; // String | name of the repo
|
||||
String sha = "sha_example"; // String | SHA or branch to start listing commits from (usually 'master')
|
||||
String path = "path_example"; // String | filepath of a file/dir
|
||||
Boolean stat = true; // Boolean | include diff stats for every commit (disable for speedup, default 'true')
|
||||
Boolean verification = true; // Boolean | include verification for every commit (disable for speedup, default 'true')
|
||||
Boolean files = true; // Boolean | include a list of affected files for every commit (disable for speedup, default 'true')
|
||||
Integer page = 56; // Integer | page number of results to return (1-based)
|
||||
Integer limit = 56; // Integer | page size of results (ignored if used with 'path')
|
||||
String not = "not_example"; // String | commits that match the given specifier will not be listed.
|
||||
try {
|
||||
List<Commit> result = apiInstance.repoGetAllCommits(owner, repo, sha, path, stat, page, limit, not);
|
||||
List<Commit> result = apiInstance.repoGetAllCommits(owner, repo, sha, path, stat, verification, files, page, limit, not);
|
||||
System.out.println(result);
|
||||
} catch (ApiException e) {
|
||||
System.err.println("Exception when calling RepositoryApi#repoGetAllCommits");
|
||||
@@ -5731,6 +5733,8 @@ Name | Type | Description | Notes
|
||||
**sha** | **String**| SHA or branch to start listing commits from (usually 'master') | [optional]
|
||||
**path** | **String**| filepath of a file/dir | [optional]
|
||||
**stat** | **Boolean**| include diff stats for every commit (disable for speedup, default 'true') | [optional]
|
||||
**verification** | **Boolean**| include verification for every commit (disable for speedup, default 'true') | [optional]
|
||||
**files** | **Boolean**| include a list of affected files for every commit (disable for speedup, default 'true') | [optional]
|
||||
**page** | **Integer**| page number of results to return (1-based) | [optional]
|
||||
**limit** | **Integer**| page size of results (ignored if used with 'path') | [optional]
|
||||
**not** | **String**| commits that match the given specifier will not be listed. | [optional]
|
||||
|
||||
Reference in New Issue
Block a user