Giot Add Remote Ssh Github
On

Giot Add Remote Ssh Github Download

Giot Add Remote Ssh Github Server
Rather than using the ssh:// protocol prefix, you can continue using the conventional URL form for accessing git over SSH, with one small change. As a reminder,: git@host:path/to/repo.gitTo specify an alternative port, put brackets around the user@host part, including the port: git@host:port:path/to/repo.gitBut if the port change is merely temporary, you can tell git to use a different SSH command instead of changing your repository’s remote URL: export SSHGITCOMMAND='ssh -p port'git clone git@host:path/to/repo.git # for instance.