Index: git_common.py |
diff --git a/git_common.py b/git_common.py |
index 2b7d258f60cad2c0cbfae55bd42cfa66e562a138..9e0adf24741494b6c3b3a04b82674383993fdd68 100644 |
--- a/git_common.py |
+++ b/git_common.py |
@@ -357,14 +357,14 @@ def freeze(): |
took_action = False |
try: |
- run('commit', '-m', FREEZE + '.indexed') |
+ run('commit', '--no-verify', '-m', FREEZE + '.indexed') |
took_action = True |
except subprocess2.CalledProcessError: |
pass |
try: |
run('add', '-A') |
- run('commit', '-m', FREEZE + '.unindexed') |
+ run('commit', '--no-verify', '-m', FREEZE + '.unindexed') |
took_action = True |
except subprocess2.CalledProcessError: |
pass |