14 lines
515 B
Markdown
14 lines
515 B
Markdown
# Setting up git
|
|
|
|
Set your git credentials:
|
|
|
|
```
|
|
git config --global user.name "Mona Lisa"
|
|
git config --global user.email "monalisa@louvre.net"
|
|
```
|
|
|
|
More info on setting git credentials:
|
|
|
|
[Setting your username in Git](https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git)
|
|
|
|
[Setting your commit email address](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address)
|