Advertisement
4tolexx

ssh config file

Feb 24th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # .ssh/config file for sshing into git servers
  2.  
  3. # Personal github account ssh key configuration
  4. Host github.com
  5. HostName github.com
  6. Preferredauthentications publickey
  7. User git
  8. IdentityFile ~/.ssh/id_rsa_gitlab
  9.  
  10.  
  11. # velalqa gitlab account ssh key configuration
  12. Host git.velalu.qa
  13. Preferredauthentications publickey
  14. User git
  15. TCPKeepAlive yes
  16. IdentityFile ~/.ssh/id_rsa
  17. IdentitiesOnly yes
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement