summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-03-19 10:20:27 -0700
committerShawn O. Pearce <sop@google.com>2009-03-19 10:20:27 -0700
commitfeabbdb44064888a6f0f1bf8bd0049f7162206c9 (patch)
tree1f2ad8484526f1bb382dfba8d94b9a449b8a1616
parent8630f39dba4de00345c130e34e98859df169c97a (diff)
downloadgit-repo-feabbdb44064888a6f0f1bf8bd0049f7162206c9.tar.gz
Don't bother listing branch URLs during upload
Modern Gerrit2 automatically outputs the URL for each commit to stderr as it creates the records. Dumping the URL ourselves is unnecessary additional output, and worse is just an approximate guess for the correct web URL. Gerrit might not live at the top level directory for the server, or might even prefer a different hostname for web connections than what is listed in the manifest. Signed-off-by: Shawn O. Pearce <sop@google.com>
-rw-r--r--subcmds/upload.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/subcmds/upload.py b/subcmds/upload.py
index 58797507..3e664056 100644
--- a/subcmds/upload.py
+++ b/subcmds/upload.py
@@ -234,9 +234,6 @@ files and description associated with the change in Gerrit.
234 print >>sys.stderr, '[OK ] %-15s %s' % ( 234 print >>sys.stderr, '[OK ] %-15s %s' % (
235 branch.project.relpath + '/', 235 branch.project.relpath + '/',
236 branch.name) 236 branch.name)
237 print >>sys.stderr, '%s' % branch.tip_url
238 print >>sys.stderr, '(as %s)' % branch.owner_email
239 print >>sys.stderr, ''
240 237
241 if have_errors: 238 if have_errors:
242 sys.exit(1) 239 sys.exit(1)