git cloneをssh経由で実行する

SSHが利用可能にする。
たとえばsshのconfigが以下のような設定の場合

1
2
3
4
5
6
Host github-USER_Y
HostName github.com
User git
IdentityFile ~/.ssh/USER_Y/priv.key
IdentitiesOnly yes
AddKeysToAgent yes

実行は以下

1
git clone git@github-USER_Y:{GITユーザ名}/{リポジトリ名}.git