Commit 2e9b6b53 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Add a comment about why @ is picked for ssh

parent de484c6b
......@@ -26,6 +26,9 @@ module QA
end
def choose_repository_clone_ssh
# It's not always beginning with ssh:// so detecting with @
# would be more reliable because ssh would always contain it.
# We can't use .git because HTTP also contain that part.
choose_repository_clone('SSH', '@')
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment