Interface CommitApi
-
- All Known Implementing Classes:
CommitApi.NotImplemented
public interface CommitApi
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
CommitApi.NotImplemented
A default implementation for source compatibility when adding new methods to the interface.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeApi
cherryPick(CherryPickInput input)
Map<String,FileInfo>
files(int parentNum)
List files in a specific commit against the parent commit.CommitInfo
get()
IncludedInInfo
includedIn()
-
-
-
Method Detail
-
get
CommitInfo get() throws RestApiException
- Throws:
RestApiException
-
cherryPick
ChangeApi cherryPick(CherryPickInput input) throws RestApiException
- Throws:
RestApiException
-
includedIn
IncludedInInfo includedIn() throws RestApiException
- Throws:
RestApiException
-
files
Map<String,FileInfo> files(int parentNum) throws RestApiException
List files in a specific commit against the parent commit.- Throws:
RestApiException
-
-