SSH Keys
Manage the SSH keys used for Git-based deployments.
To deploy your code via SSH, you must add your public SSH key to your Slasha account. You only need to do this once per machine.
slasha ssh-keys add
Add a new public key to your account. You can specify a file path or provide a title for the key.
# Add your default public key
slasha ssh-keys add --file ~/.ssh/id_ed25519.pub
# Add a key with a custom title
slasha ssh-keys add --file ~/.ssh/id_rsa.pub --title "Work Laptop"
# Add a raw key string directly
slasha ssh-keys add "ssh-ed25519 AAAAC3NzaC1lZ..."
slasha ssh-keys list
View all SSH keys registered to your account.
# List your keys
slasha ssh-keys list
slasha ssh-keys remove
Delete an SSH key from your account using its ID (find the ID with the list command).
# Remove a specific key
slasha ssh-keys remove <id>