From e0b59ec6685b3b9a8bccd1e9735d5798f48240e9 Mon Sep 17 00:00:00 2001 From: HereticPilgrim <5598328+HereticPilgrim@users.noreply.github.com> Date: Wed, 1 Mar 2023 21:14:02 +0100 Subject: [PATCH] =?UTF-8?q?Added=20a=20note=20about=20missing=20ssh-option?= =?UTF-8?q?.=20Fixes=20issue=20deployphp/deployer=E2=80=A6=20(#3520)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added a note about missing ssh-option. Fixes issue deployphp/deployer#2908 * Slight wording update --------- Co-authored-by: Manu --- docs/getting-started.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/getting-started.md b/docs/getting-started.md index b8976b7e9..4e9c3c8b9 100755 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -100,6 +100,14 @@ Ssh to the host, for example, for editing _.env_ file: dep ssh ``` +:::tip +If your webserver is using OpenSSH version older than v7.6, updating the code may fail with the error +message `unsupported option "accept-new".` In this case, override the Git SSH command with: +```php +set('git_ssh_command', 'ssh'); +``` +::: + After everything is configured properly we can resume our deployment from the place it stopped. However, this is not required; we can just start a new deploy: