How to setup more than one Github account with SSH keys ๐ on same computer
Hi there ๐ In this blog we will see how to setup 2 Github accounts on a single computer with 2 SSH keys. I will be using Linux as my OS 1. Generate SSH Key Pair๐ Open Terminal Generate the key pair using ssh-keygen $ ssh-keygen -t ed25519 -C "[email protected]" You will be prompted to enter the filename > Enter a file in which to save the key (/home/user/.ssh/id_ed25519):[Press enter] If you press enter without writing the filename the file name will be default i....