SSH Setup
git
ssh-keygen -t rsa -b 4096 -C "<email>"run
sudo apt install openssh-clientif not working
eval "$(ssh-agent -s)"ssh-add <private_key>cat ~/.ssh/id_rsa.pubgit config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"Last updated