You need to sign in or sign up before continuing.
problem solving - adding SSH to windows
Created by: chenzheng06
I tried every step and the working process is to follow the guide https://help.github.com/en/articles/adding-a-new-ssh-key-to-your-github-account
including:
generate SSH key, skip if you already have one
$ ssh-keygen -t rsa -b 4096 -C "firstname@blocpower.org"
Copies the contents of the id_rsa.pub file to your clipboard
$ clip < ~/.ssh/id_rsa.pub
add the key to Github account, the steps are in the guide.
then, in bash, try
$ ssh-add
if it doesn't work, referencing to this posting: https://unix.stackexchange.com/questions/12195/how-to-avoid-being-asked-passphrase-each-time-i-push-to-bitbucket You can try: $ exec ssh-agent bash $ ssh-add