Problems found in: Linux-and-WSL-Setup
The section Generate Personal Access Token is missing from the Linux documentation
The SSH commands are incomplete, a complete solution can be found here with the key points being:
ssh-keygen -t rsa -b 4096 -C "EMAIL" (note github's solution prefers a different encryption)
- add key to ssh-agent
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/KEY
I would also suggest booting ssh-agent using .bashrc
Problems found in: Linux-and-WSL-Setup
The section Generate Personal Access Token is missing from the Linux documentation
The SSH commands are incomplete, a complete solution can be found here with the key points being:
ssh-keygen -t rsa -b 4096 -C "EMAIL"(note github's solution prefers a different encryption)eval "$(ssh-agent -s)"ssh-add ~/.ssh/KEYI would also suggest booting
ssh-agentusing.bashrc