diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-12 02:24:43 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-12 02:24:43 +0300 |
commit | 58c256772be590395d1afecb6f2e6b20314bcc7e (patch) | |
tree | 7b1e69b5c7049dd868ac075ac6a1d2526f99df38 /pull | |
parent | split pull/pull.py (diff) | |
download | cgitize-58c256772be590395d1afecb6f2e6b20314bcc7e.tar.gz cgitize-58c256772be590395d1afecb6f2e6b20314bcc7e.zip |
more robust ssh calls
Diffstat (limited to '')
-rw-r--r-- | pull/cgit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pull/cgit.py b/pull/cgit.py index 8f29aed..ec7876c 100644 --- a/pull/cgit.py +++ b/pull/cgit.py @@ -9,7 +9,7 @@ from pull.utils import chdir, check_output, run _ENV = os.environ.copy() -_ENV['GIT_SSH_COMMAND'] = 'ssh -oStrictHostKeyChecking=no -oBatchMode=yes' +_ENV['GIT_SSH_COMMAND'] = 'ssh -oBatchMode=yes -oLogLevel=QUIET -oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null' def _run(*args, **kwargs): |