Git
FAQ
Published on: Nov 25, 2024
How to configure user email and username for local git repository?
git config user.name "Your Name Here"git config user.email your@email.example
When to use?
- When you need to set up your username and email for commits.
How to configure global user email and username?
git config --global user.name "Your Name Here"git config --global user.email your@email.example
When to use?
- When you need to set up global username and email for all local repositories.
How to check access to GitHub?
ssh -T git@github.com