Versions Compared

Key

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

...

So it is best practice (but not mandatory) to pick an email address and name which is recognized by your cloud host account.

Expand
titleWhat does will it look like unconfigured?Go to Settings > Git Setup

If you haven’t configured your Git credentials you are likely to see something like this:

You can set them up clicking on the Git credentials.

Expand
titleClick on Ellipisis in the Git credentials section
Expand
titleFill in your Name and Email and click Save

Pretty simple eh!

Expand
titleSetting them with the Git command line

These can also be set at the command line of GIT, like so:

Code Block
languagebash
git config --global user.name "Mary Tyler Moore"
git config --global user.email "mary@moore.com"

The GIT setup screen also allows one to set these parameters.

...