Configure user.name and user.name in git
You typically configure your global username and email address after installing Git.
...
To set your global username/email configuration:
- Open the command line.
- Set your username: git config --global user.name "FIRST_NAME LAST_NAME"
- Set your email address: git config --global user.email "MY_NAME@example.com"
Comments
Post a Comment