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

Unified Diff: git_cl.py

Issue 10915190: Fix git_cl diffstat to use -l100000 to match upload.py (Closed) Base URL: https://git.chromium.org/chromium/tools/depot_tools.git@master
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index bca8760d14b797f1917269ff90c5a1170049f224..e894f08aa44cfef7095524458a066692b86b1eda 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -143,8 +143,8 @@ def print_stats(args):
if 'GIT_EXTERNAL_DIFF' in env:
del env['GIT_EXTERNAL_DIFF']
return subprocess2.call(
- ['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder'] + args,
- env=env)
+ ['git', 'diff', '--no-ext-diff', '--stat', '--find-copies-harder',
+ '-l100000'] + args, env=env)
class Settings(object):
« no previous file with comments | « no previous file | tests/git_cl_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698