Skip to content

Instantly share code, notes, and snippets.

@the-mova
Last active June 2, 2024 23:06
Show Gist options
  • Save the-mova/758af4e6e6640c9add7d99ae72654f6c to your computer and use it in GitHub Desktop.
Save the-mova/758af4e6e6640c9add7d99ae72654f6c to your computer and use it in GitHub Desktop.
Github ~ SSH Config

SSH config file to setup and use one or more github account(s)

# Personal github account ~ uses public key
Host gh_personal
	HostName github.com
	PreferredAuthentications publickey
	IdentityFile ~/.ssh/gh_personal
	
# Work github account ~ uses public key
Host gh_work
	HostName github.com
	PreferredAuthentications publickey
	IdentityFile ~/.ssh/gh_work
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment