diff options
| author | Russ Cox <rsc@golang.org> | 2015-01-13 18:55:18 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2015-01-14 04:14:12 +0000 |
| commit | e60b08421f15d8e7ec1c00d52dec8e48f029ea4a (patch) | |
| tree | c73344b02d89648e0bc5685c35b817b715bbf677 /git-codereview/review.go | |
| parent | 8c348adcde5327dca3eca9c5e6cf61f7118493cc (diff) | |
| download | go-x-review-e60b08421f15d8e7ec1c00d52dec8e48f029ea4a.tar.xz | |
git-codereview: add branchpoint command, for scripts
The most important use of this is
git rebase -i $(git codereview branchpoint)
in multichange clients.
Change-Id: I6bdbc02db2e2823e837159efec20ad5c9046bcd5
Reviewed-on: https://go-review.googlesource.com/2783
Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'git-codereview/review.go')
| -rw-r--r-- | git-codereview/review.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-codereview/review.go b/git-codereview/review.go index 98fa241..5f4b890 100644 --- a/git-codereview/review.go +++ b/git-codereview/review.go @@ -124,6 +124,8 @@ func main() { installHook() switch command { + case "branchpoint": + branchpoint(args) case "change": change(args) case "gofmt": |
