First time setup
First time setup
Checking Your Settings
If you want to check your configuration settings, you can use the git config --list
command to list all the settings Git can find at that point:
Set your Identity
The first thing you should do when you install Git is to set your user name and email address. This is important because every Git commit uses this information, and it’s immutably baked into the commits you start creating:
Many of the GUI tools will help you do this when you first run them. After finishing the above step, you can again check your settings using the previous command.
Last updated