A colleague of mine has a remote git repo that I wanted to clone and he provided a url of git@his.server.com:443/repo.git. ssh is listing on port 443 in this case.
I tried to clone by doing git clone git@his.server.com:443/repo.git but the operation times out. I had thought git defaults to ssh as its protocol and I'm not sure why this does not work.
If I explicitly specify ssh in the url like git clone ssh://git@his.server.com:443/repo.git it works just as normal.
Is that expected git behavior? Why does the first url not work but the second one does?