Install git.
To configure your Git username and email address globally:
- Set your username:
git config --global user.name "Your Name" - Set your email address:
git config --global user.email "you@example.com"
SSH key setup for Windows.
1. ssh-keygen -t ed25519 -C “your_email@example.com”
Then press enter……
2. type C:\Users\YourDeviceName\.ssh\id_ed25519.pub
Then copy this key and open your GitHub account go to the SSH and GPG keys section create a new SSH key give a title paste this key into the key input field and add this SSH key.


Leave a Reply