Skip to content
Snippets Groups Projects
Commit 0ed4ae72 authored by Christian E. Hopps's avatar Christian E. Hopps
Browse files

Add []s around user@ipv6addr (e.g., "[git@::1]/repo.git")

parent be206a51
Branches
Tags
No related merge requests found
Loading
@@ -13,7 +13,11 @@ class Settings < Settingslogic
Loading
@@ -13,7 +13,11 @@ class Settings < Settingslogic
if gitlab_shell.ssh_port != 22 if gitlab_shell.ssh_port != 22
"ssh://#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:#{gitlab_shell.ssh_port}/" "ssh://#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:#{gitlab_shell.ssh_port}/"
else else
"#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:" if gitlab_shell.ssh_host.include? ':'
"[#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}]:"
else
"#{gitlab_shell.ssh_user}@#{gitlab_shell.ssh_host}:"
end
end end
end end
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment