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 |