diff options
Diffstat (limited to 'git-codereview/branch.go')
| -rw-r--r-- | git-codereview/branch.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-codereview/branch.go b/git-codereview/branch.go index 38933b0..cabe7f6 100644 --- a/git-codereview/branch.go +++ b/git-codereview/branch.go @@ -347,12 +347,12 @@ func (b *Branch) DefaultCommit(action string) *Commit { return work[0] } -func branchpoint(args []string) { +func cmdBranchpoint(args []string) { expectZeroArgs(args, "sync") fmt.Fprintf(stdout(), "%s\n", CurrentBranch().Branchpoint()) } -func rebasework(args []string) { +func cmdRebaseWork(args []string) { expectZeroArgs(args, "rebase-work") b := CurrentBranch() if HasStagedChanges() || HasUnstagedChanges() { |
