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 "[email protected]"
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 [email protected]
Using SSH URLs
Clone with SSH:
git clone [email protected]:org/repo.git
Was this article helpful?