Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Side by Side Diff: gitscripts/git_try.py

Issue 188383002: Refactor the way that git executables are launched in depot tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 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 """Wrapper for trychange.py for git checkout.""" 5 """Wrapper for trychange.py for git checkout."""
6 6
7 import logging 7 import logging
8 import sys 8 import sys
9 9
10 import breakpad # pylint: disable=W0611 10 import breakpad # pylint: disable=W0611
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 sys.exit(trychange.TryChange( 61 sys.exit(trychange.TryChange(
62 args, change, swallow_exception=False, 62 args, change, swallow_exception=False,
63 prog='git try', 63 prog='git try',
64 extra_epilog='\n' 64 extra_epilog='\n'
65 'git try will diff against your tracked branch and will ' 65 'git try will diff against your tracked branch and will '
66 'detect your rietveld\n' 66 'detect your rietveld\n'
67 'code review if you are using git-cl\n')) 67 'code review if you are using git-cl\n'))
68 except third_party.upload.ClientLoginError, e: 68 except third_party.upload.ClientLoginError, e:
69 print('Got an exception while trying to log in to Rietveld.') 69 print('Got an exception while trying to log in to Rietveld.')
70 print(str(e)) 70 print(str(e))
OLDNEW
« gitscripts/git_cl.py ('K') | « gitscripts/git_number.py ('k') | python_git_runner.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698