Setting Up SSH Keys
Configure SSH authentication for Git
Last updated: December 28, 2025
Setting Up SSH Keys
Generate a Key
ssh-keygen -t ed25519 -C "your@email.com"
Add to Statly Code
cat ~/.ssh/id_ed25519.pub
- Go to Settings > SSH Keys
- Click Add SSH Key
- Paste and save
Test Connection
ssh -T git@git.statly.live
Using SSH URLs
Clone with SSH:
git clone git@git.statly.live:org/repo.git
Was this article helpful?