Background
I was granted as a manager on a private github repo, the first task is how to clone the repo.
Solution
Using ssh to clone the repo.
Step 1: Generate SSH Key
Run the following command to generate ssh
ssh-keygen -t ed25519 -C "your_email@domain.com"
The ssh key will be saved to ~/.ssh/id_ed25519
as default setting, please remember your passphrase.
August 10, 2025Less than 1 minute