GitExtensions + Putty via SSH on custom port
问题 I have a git repository that I pull using a path similar to this: git pull ssh://username@host.com:1234/path/to/repository.git When GitExtensions then tries to pull from the repo using plink, it makes this call: plink -T username@host.com:/path/to/repository.git This ends up failing because it's actually pinging port #22, and not #1234. The right call to make would be plink -T -P 1234 username@host.com:/path/to/repository.git If I create an alias "hostCom" in my ~/.ssh/config, it seems to