Merge "Revision API: Add method to query if revision must be rebased"

This commit is contained in:
Shawn Pearce
2014-03-24 23:58:50 +00:00
committed by Gerrit Code Review
3 changed files with 50 additions and 0 deletions

View File

@@ -26,4 +26,5 @@ public interface RevisionApi {
void publish() throws RestApiException;
ChangeApi cherryPick(CherryPickInput in) throws RestApiException;
ChangeApi rebase() throws RestApiException;
boolean canRebase();
}