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

Unified Diff: checkout.py

Issue 169433008: Instead of passing --author, lets just set the name/email for the repo temporarily. (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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: checkout.py
diff --git a/checkout.py b/checkout.py
index 2c9c68a7fd24ec5bcaa3df2cdd1ae89cd36bb59a..efdf3a5f1da92d2645034719216fa3e6fe21774c 100644
--- a/checkout.py
+++ b/checkout.py
@@ -713,11 +713,14 @@ class GitCheckout(CheckoutBase):
# index.
cmd = ['commit', '-m', 'Committed patch']
if name and email:
- author = '%s <%s>' % (name, email)
- cmd.extend(['--author', author])
+ self._check_call_git(['config', 'user.email', email])
agable 2014/02/22 01:18:09 Ewwwwwwww. Use git -c user.email=Foo user.name=Ba
Ryan Tseng 2014/02/22 01:47:16 Done.
+ self._check_call_git(['config', 'user.name', name])
if verbose:
cmd.append('--verbose')
self._check_call_git(cmd)
+ if name and email:
+ self._check_call_git(['config', '--unset', 'user.email', email])
+ self._check_call_git(['config', '--unset', 'user.name', name])
if self.base_ref:
base_ref = self.base_ref
else:
« 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