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

Unified Diff: git_common.py

Issue 1179273003: When using git-rebase-update, pass -n to git commit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: s/-n/--no-verify/ Created 5 years, 6 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: git_common.py
diff --git a/git_common.py b/git_common.py
index 22f14cde49f35ec684fd77758ab8fb1ae8f63dbb..9d9f46415a479a2c6626d078b7ac9af13ed2b946 100644
--- a/git_common.py
+++ b/git_common.py
@@ -656,7 +656,7 @@ def squash_current_branch(header=None, merge_base=None):
# nothing to commit at this point.
print 'Nothing to commit; squashed branch is empty'
return False
- run('commit', '-a', '-F', '-', indata=log_msg)
+ run('commit', '--no-verify', '-a', '-F', '-', indata=log_msg)
return True
« 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