mirror of
https://github.com/golang/go
synced 2024-11-23 19:10:02 -07:00
codereview: restrict sync to default branch
'default' is the name of the main branch, the one that isn't a release branch. R=golang-dev, r CC=golang-dev https://golang.org/cl/4636072
This commit is contained in:
parent
ff4518da17
commit
3379414b21
@ -1316,7 +1316,7 @@ def clpatch_or_undo(ui, repo, clname, opts, mode):
|
||||
# Create fresh CL and start with patch that would reverse the change.
|
||||
vers = short(rev.node())
|
||||
cl = CL("new")
|
||||
desc = rev.description()
|
||||
desc = str(rev.description())
|
||||
if mode == "undo":
|
||||
cl.desc = (undoHeader % (clname, vers)) + desc + undoFooter
|
||||
else:
|
||||
@ -1783,7 +1783,7 @@ def sync(ui, repo, **opts):
|
||||
err = commands.postincoming(ui, repo, modheads, True, "tip")
|
||||
if err:
|
||||
return err
|
||||
commands.update(ui, repo)
|
||||
commands.update(ui, repo, rev="default")
|
||||
sync_changes(ui, repo)
|
||||
|
||||
def sync_note(msg):
|
||||
|
Loading…
Reference in New Issue
Block a user