@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set GIT_SSH_VARIANT alongside GIT_SSH

A recent version of Git has changed some piece of behavior here and we
now get "fatal: ssh variant 'simple' does not support setting port"
when using a port. Explicitly setting GIT_SSH_VARIANT to `ssh` likely
fixes this.

+1
+1
src/applications/diffusion/protocol/DiffusionGitCommandEngine.php
··· 27 27 $env['HOME'] = PhabricatorEnv::getEmptyCWD(); 28 28 29 29 $env['GIT_SSH'] = $this->getSSHWrapper(); 30 + $env['GIT_SSH_VARIANT'] = 'ssh'; 30 31 31 32 if ($this->isAnyHTTPProtocol()) { 32 33 $uri = $this->getURI();