Skip to content

Instantly share code, notes, and snippets.

@sharon-xa
sharon-xa / configure-git.md
Last active May 14, 2024 12:52
Create an ssh key to use with github (Linux)

Check if you have name and email

git config user.name
git config user.email

Set your name and email

git config --global user.name "John Doe"
git config --global user.email john_doe@example.com