Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

STEP 3. Verify the version of Git that was installed:

Code Block
git --version


STEP 4. Set git commit username and email address type

Code Block
git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"

To verify the changes:

Code Block
git config --list

Output:

Code Block
user.name=Your name
user.email=youremail@yourdomain.com

The configuration settings are stored in the ~/.gitconfig file


As of  , I was able to see its version 2.22.0 for your information.