Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(217)

Issue 110134: Make git try work over svn

Can't Edit
Can't Publish+Mail
Start Review
Created:
14 years, 8 months ago by thakis
Modified:
14 years, 8 months ago
Reviewers:
Mark Mentovai, chase, M-A
CC:
viettrungluu
Base URL:
http://src.chromium.org/svn/trunk/tools/depot_tools/
Visibility:
Public.

Patch Set 1 #

Patch Set 2 : non-empty message #

Total comments: 5

Patch Set 3 : Use options.email instead of options.user #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+5 lines, -4 lines) Patch
M trychange.py View 1 2 4 chunks +5 lines, -4 lines 2 comments Download

Messages

Total messages: 8
thakis
The --user is merely a convenience, but the --non-interactive breaks stuff when I use `git ...
14 years, 8 months ago (2009-09-01 18:27:51 UTC) #1
chase
http://codereview.appspot.com/110134/diff/3/1002 File trychange.py (right): http://codereview.appspot.com/110134/diff/3/1002#newcode316 Line 316: '--username', options.user + '@chromium.org', git-try invokes trychange with ...
14 years, 8 months ago (2009-09-01 18:57:12 UTC) #2
thakis
Thanks for the review. Good idea using options.email. http://codereview.appspot.com/110134/diff/3/1002 File trychange.py (right): http://codereview.appspot.com/110134/diff/3/1002#newcode316 Line 316: ...
14 years, 8 months ago (2009-09-01 19:04:50 UTC) #3
M-A
lgtm One of the thing that keeps coming about the svn support is "Which password ...
14 years, 8 months ago (2009-09-01 19:31:53 UTC) #4
M-A
Oh and you misconfigured your depot_tools.git checkout, you should use codereview.chromium.org and cc chromium-reviews@googlegroups.com. Too ...
14 years, 8 months ago (2009-09-01 19:33:05 UTC) #5
chase
lgtm http://codereview.appspot.com/110134/diff/3/1002 File trychange.py (right): http://codereview.appspot.com/110134/diff/3/1002#newcode326 Line 326: RunCommand(['svn', 'ls', full_url]) I was thinking about ...
14 years, 8 months ago (2009-09-01 19:41:21 UTC) #6
Mark Mentovai
http://codereview.appspot.com/110134/diff/5/1005 File trychange.py (right): http://codereview.appspot.com/110134/diff/5/1005#newcode316 Line 316: '--username', options.email, This line has caused: Traceback (most ...
14 years, 8 months ago (2009-09-02 03:13:15 UTC) #7
thakis
14 years, 8 months ago (2009-09-02 03:21:02 UTC) #8
http://codereview.appspot.com/110134/diff/5/1005
File trychange.py (right):

http://codereview.appspot.com/110134/diff/5/1005#newcode316
Line 316: '--username', options.email,
Sorry 'bout that. What about:

  cmd = [...]
  if options.email:
    cmd += ['--username', options.email]
  RunCommand(cmd)

to fix this?
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b