===========================================================================
*** 🎧 How To Setup SSH Keys for GitHub Using GitBash (+Bonus Tips) 🎧 ***
===========================================================================
----------------------------------------------------------
📋 📜 Platform / Techstack 📜 📋
----------------------------------------------------------
✔️ GitHub
✔️ OpenSSH
✔️ Git for Windows (GitBash)
✔️ MS Windows Operating System
-----------------------------------------------------
🏃 👣 Highlights / Steps 👣 🏃
-----------------------------------------------------
✔️ Starting / Verifying ssh-agent
✔️ Generate SSH Keys using ssh-Keygen (OpenSSH)
✔️ Setting up SSH Keys using ssh-agent (GitBash) and GitHub
✔️ SSH Authentication between GitBash and GitHub
✔️ Setting / Changing SSH Key Passphrases
✔️ Checking / Deleting existing SSH Keys
-------------------------------------------
📋 📜 Notes 📜 📋
-------------------------------------------
== For checking your SSH verion :
$ ssh -V
OpenSSH_8.3p1, OpenSSL 1.1.1g 21 Apr 2020
== Setting your Global Username and Email :
$ git config --global user.name "Your name here"
$ git config --global user.email "your_email@example.com"
== Check if you already have any SSH keys which you can use :
$ ls -al ~/.ssh
== Generating SSH Keys using OpenSSH and generating SSH keys with ssh-keygen
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
== Start the ssh-agent in the background
$ eval $(ssh-agent -s)
== Add your Private key to SSH Agent :
$ ssh-add ~/.ssh/id_rsa
== Test your GitBash authentication with Github
$ ssh -T git@github.com
== For changing passphrase of an existing ssh key, use :
$ ssh-keygen -p
== For removing 'ALL' private keys from the ssh-agent :
$ ssh-add -D
== For removing 'A Single' named private key from the ssh-agent :
$ ssh-add -d /home/user/.ssh/id_rsa
--------------------------------------------------------------------------------------------------
🌐 🔗 Reference Links 🔗 🌐
--------------------------------------------------------------------------------------------------
✔️ What is SSH by GitKraken (video): https://ext.adojo.link/what-is-ssh-by...
✔️ What is SSH? (useful resources): https://ext.adojo.link/what-is-ssh-of...
✔️ What is SSH? (on Bitbucket): https://ext.adojo.link/what-is-ssh-by...
✔️ SSH Command Reference: https://ext.adojo.link/ssh-cmd-reference
-------------------------------------------------------------------------
💬 😊 More About Automation Dojos 😊 💬
-------------------------------------------------------------------------
✔️ Website: https://adojo.link/website
✔️ Weblog: https://adojo.link/blog
✔️ Github: https://adojo.link/github
✔️ Twitter: https://adojo.link/twitter
✔️ Facebook: https://adojo.link/facebook
✔️ Youtube: https://adojo.link/youtube
-------------------------------------------------------------------
👏 ❤️ Support Automation Dojos ❤️ 👏
-------------------------------------------------------------------
Please consider making a donation to the following charity:
✔️ Save the Children: https://ext.adojo.link/save-the-children
✔️ ActionAid for women and girls living in poverty: https://ext.adojo.link/actionaid-for-...
✔️ Fundraiser for people in need: https://ext.adojo.link/fundraiser-for...
Disclaimer: The contents and information on this channel are for educational and informational purposes only. Despite our best endeavors, we cannot guarantee that there are no mistakes or errors. Hence we advise the audience to do their own research and should you decide to act upon any information provided here, you do so at your own risk. Also, the contents of this channel are not affiliated in any way with any organization. The views and opinions expressed are those of the channel publisher/author and do not necessarily reflect the views of any entities they represent.
#SSH #ADojo #AutomationDojos #SSHKeys #SSHKeysForGithub
On this page of the site you can watch the video online How-To Setup SSH Keys for GitHub Using GitBash (+Bonus Tips) with a duration of hours minute second in good quality, which was uploaded by the user Automation Dojos 25 August 2020, share the link with friends and acquaintances, this video has already been watched 21,676 times on youtube and it was liked by 322 viewers. Enjoy your viewing!