fix(git): apply HTTP transport config to PR checkouts

This commit is contained in:
Andras Bacsai
2026-06-03 12:59:45 +02:00
parent ffe37fc892
commit 36d44faaf9
2 changed files with 17 additions and 1 deletions
+1 -1
View File
@@ -1821,7 +1821,7 @@ class Application extends BaseModel
} else {
$commands->push("echo 'Checking out $branch'");
}
$git_clone_command = "{$git_clone_command} && cd {$escapedBaseDir} && GIT_SSH_COMMAND=\"{$otherSshCommand}\" ".$this->buildGitCheckoutCommand($commit, $otherSshCommand);
$git_clone_command = "{$git_clone_command} && cd {$escapedBaseDir} && GIT_SSH_COMMAND=\"{$otherSshCommand}\" ".$this->buildGitCheckoutCommand($commit, $otherSshCommand, $gitConfigOptions);
}
}