Skip to content

Commit

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

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

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

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

0 comments on commit b1c38da

Please sign in to comment.