Github-2 : Setting Up Github
Setting up Github
Adding SSH key - Using the SSH protocol, you can connect and authenticate to remote servers and services. With SSH keys, you can connect to GitHub without supplying your username or password at each visit.
- Go to web 'https://help.github.com/articles/connecting-to-github-with-ssh/‘ or type GitHub ssh key
- Click on ‘Generating new SSH key and adding it to the ssh-agent’
- Select device Mac/Window/Linux ( I am on MAC)
- Follow the instruction of website
Generating a new SSH key
- Open Terminal.
- Paste the text below, substituting in your GitHub email address.
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
This creates a new ssh key, using the provided email as a label.
Generating public/private rsa key pair.
- When you're prompted to "Enter a file in which to save the key," press Enter. This accepts the default file location.
Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]
- At the prompt, type a secure passphrase. For more information, see "Working with SSH key passphrases".
Enter passphrase (empty for no passphrase): [Type a passphrase] Enter same passphrase again: [Type passphrase again]
- Finally got Zd5LhRDg7c62bSzcvl/THZ34FewJwVRKJF4auiGga4
Comments
Post a Comment