OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # Copyright (C) 2008 Evan Martin <martine@danga.com> | 6 # Copyright (C) 2008 Evan Martin <martine@danga.com> |
7 | 7 |
8 """A git-command for integrating reviews on Rietveld.""" | 8 """A git-command for integrating reviews on Rietveld.""" |
9 | 9 |
10 import json | 10 import json |
(...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1507 return 2 | 1507 return 2 |
1508 | 1508 |
1509 print "The tree is %s" % status | 1509 print "The tree is %s" % status |
1510 print | 1510 print |
1511 print GetTreeStatusReason() | 1511 print GetTreeStatusReason() |
1512 if status != 'open': | 1512 if status != 'open': |
1513 return 1 | 1513 return 1 |
1514 return 0 | 1514 return 0 |
1515 | 1515 |
1516 | 1516 |
| 1517 @usage('[new upstream branch]') |
1517 def CMDupstream(parser, args): | 1518 def CMDupstream(parser, args): |
1518 """print the name of the upstream branch, if any""" | 1519 """prints or sets the name of the upstream branch, if any""" |
1519 _, args = parser.parse_args(args) | 1520 _, args = parser.parse_args(args) |
| 1521 if len(args) > 1: |
| 1522 parser.error('Unrecognized args: %s' % ' '.join(args)) |
| 1523 return 0 |
| 1524 |
| 1525 cl = Changelist() |
1520 if args: | 1526 if args: |
1521 parser.error('Unrecognized args: %s' % ' '.join(args)) | 1527 # One arg means set upstream branch. |
1522 cl = Changelist() | 1528 RunGit(['branch', '--set-upstream', cl.GetBranch(), args[0]]) |
1523 print cl.GetUpstreamBranch() | 1529 cl = Changelist() |
| 1530 print "Upstream branch set to " + cl.GetUpstreamBranch() |
| 1531 else: |
| 1532 print cl.GetUpstreamBranch() |
1524 return 0 | 1533 return 0 |
1525 | 1534 |
1526 | 1535 |
1527 def CMDset_commit(parser, args): | 1536 def CMDset_commit(parser, args): |
1528 """set the commit bit""" | 1537 """set the commit bit""" |
1529 _, args = parser.parse_args(args) | 1538 _, args = parser.parse_args(args) |
1530 if args: | 1539 if args: |
1531 parser.error('Unrecognized args: %s' % ' '.join(args)) | 1540 parser.error('Unrecognized args: %s' % ' '.join(args)) |
1532 cl = Changelist() | 1541 cl = Changelist() |
1533 cl.SetFlag('commit', '1') | 1542 cl.SetFlag('commit', '1') |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1608 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) | 1617 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e))) |
1609 | 1618 |
1610 # Not a known command. Default to help. | 1619 # Not a known command. Default to help. |
1611 GenUsage(parser, 'help') | 1620 GenUsage(parser, 'help') |
1612 return CMDhelp(parser, argv) | 1621 return CMDhelp(parser, argv) |
1613 | 1622 |
1614 | 1623 |
1615 if __name__ == '__main__': | 1624 if __name__ == '__main__': |
1616 fix_encoding.fix_encoding() | 1625 fix_encoding.fix_encoding() |
1617 sys.exit(main(sys.argv[1:])) | 1626 sys.exit(main(sys.argv[1:])) |
OLD | NEW |