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

Unified Diff: roll_dep.py

Issue 1390073005: Add --no-merges to roll_dep.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: add --no-merges to commit message output Created 5 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: roll_dep.py
diff --git a/roll_dep.py b/roll_dep.py
index 9097b832176dc8df357ef939ad1b7803fc2c7959..c95db187fb5d4482da47ab7dca24d3fedee8ba7a 100755
--- a/roll_dep.py
+++ b/roll_dep.py
@@ -116,7 +116,8 @@ def roll(root, deps_dir, roll_to, key, reviewers, bug, no_log, log_limit):
['git', 'config', 'remote.origin.url'], cwd=full_dir).strip()
log_url = get_log_url(upstream_url, head, roll_to)
logs = check_output(
M-A Ruel 2015/10/07 17:13:03 Let's do instead: cmd = [ 'git', 'log', commit_r
- ['git', 'log', commit_range, '--date=short', '--format=%ad %ae %s'],
+ ['git', 'log', commit_range, '--date=short', '--format=%ad %ae %s',
+ '--no-merges'],
cwd=full_dir)
logs = re.sub(r'(?m)^(\d\d\d\d-\d\d-\d\d [^@]+)@[^ ]+( .*)$', r'\1\2', logs)
nb_commits = logs.count('\n')
@@ -130,8 +131,8 @@ def roll(root, deps_dir, roll_to, key, reviewers, bug, no_log, log_limit):
log_section = ''
if log_url:
log_section = log_url + '\n\n'
- log_section += '$ git log %s --date=short --format=\'%%ad %%ae %%s\'\n' % (
- commit_range)
+ log_section += '$ git log %s ' % (commit_range)
+ log_section += '--date=short --format=\'%ad %ae %s\' --no-merges\n'
if not no_log and should_show_log(upstream_url):
if logs.count('\n') > log_limit:
# Keep the first N log entries.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698