Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxiaojian committed Feb 22, 2024
1 parent d939739 commit f09f372
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,21 @@ public void deleteBranch(String branchName) {
}
}

/**
* Merge specify branch into main.
*
* @param fromBranch
*/
public void mergeBranchToMain(String fromBranch) {}

/**
* Replace specify branch to main branch
*
* @param from
* @param to
*/
public void replaceBranch(String from, String to) {}

/** Check if path exists. */
public boolean fileExists(Path path) {
try {
Expand Down

0 comments on commit f09f372

Please sign in to comment.