diff --git a/pre_commit/commands/run.py b/pre_commit/commands/run.py index 4cbc99bb..3a08c8d8 100644 --- a/pre_commit/commands/run.py +++ b/pre_commit/commands/run.py @@ -193,7 +193,7 @@ def _run_hooks(config, repo_hooks, args, environ): subprocess.call(('git', 'diff', '--quiet', '--no-ext-diff')) != 0 ): print('All changes made by hooks:') - subprocess.call(('git', 'diff', '--no-ext-diff')) + subprocess.call(('git', '--no-pager', 'diff', '--no-ext-diff')) return retval