...
So it is best practice (but not mandatory) to pick an email address and name which is recognized by your cloud host account.
Expand |
---|
title | What 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 |
---|
title | Click on Ellipisis in the Git credentials section |
---|
|
|
Expand |
---|
title | Fill in your Name and Email and click Save |
---|
|
Pretty simple eh! |
Expand |
---|
title | Setting them with the Git command line |
---|
|
These can also be set at the command line of GIT, like so: Code Block |
---|
| 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. |
...