Skip to content

Instantly share code, notes, and snippets.

@devasheeshG
Last active June 28, 2024 23:34
Show Gist options
  • Save devasheeshG/2fd7cfd34751b1046e8564a2f1d71d78 to your computer and use it in GitHub Desktop.
Save devasheeshG/2fd7cfd34751b1046e8564a2f1d71d78 to your computer and use it in GitHub Desktop.
# Create ssh pub-private keys (also compatable with github ssh auth)
ssh-keygen -t rsa -b 4096 -C "[email protected]"
ssh-keygen -t ed25519 -C "[email protected]"
# Uploading your public key with a Linux or macOS client
ssh-copy-id [email protected]
ssh-copy-id [email protected]
# Uploading your public key with a Windows client
cat .ssh/id_rsa.pub | ssh [email protected] 'cat >> ~/.ssh/authorized_keys'
cat .ssh/id_rsa.pub | ssh [email protected] 'cat >> ~/.ssh/authorized_keys'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment