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

Unified Diff: apply_issue.py

Issue 175543006: Pass in "--author 'name <email@somewhere.com>" when doing git patches in apply_issue.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 10 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 | checkout.py » ('j') | checkout.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apply_issue.py
diff --git a/apply_issue.py b/apply_issue.py
index b4ad8946f8e63d0e4fb1a3bd204edb8e72d46c4f..65c23f7541806871ba20384bfbd76590ed13b789 100755
--- a/apply_issue.py
+++ b/apply_issue.py
@@ -161,8 +161,11 @@ def main():
if scm_type == 'svn':
scm_obj = checkout.SvnCheckout(full_dir, None, None, None, None)
elif scm_type == 'git':
- scm_obj = checkout.GitCheckout(full_dir, None, None, None, None,
- base_ref=options.base_ref)
+ scm_obj = checkout.GitCheckout(
+ full_dir, None, None, None, None,
+ base_ref=options.base_ref,
+ email=properties.get('owner_email', 'chrome-bot@chromium.org'),
+ name=properties.get('owner', 'chrome-bot'))
elif scm_type == None:
scm_obj = checkout.RawCheckout(full_dir, None, None)
else:
« no previous file with comments | « no previous file | checkout.py » ('j') | checkout.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698