1
0
Fork 0
mirror of https://codeberg.org/Mo8it/How_To_Linux.git synced 2024-10-18 14:12:38 +00:00

Merge pull request 'git-config' (#8) from saraf/dev-tools:git-config into main

Reviewed-on: https://codeberg.org/mo8it/dev-tools/pulls/8
This commit is contained in:
Mo 2023-08-17 09:21:34 +00:00
commit bec077c825

View file

@ -4,6 +4,18 @@ The participants of the course will add a description to each of these Git subco
## git config ## git config
Configure user-specific information like name, email etc. An example for setting the email is
```bash
git config --global user.email you@gotthis.com
```
An example for setting the username would be
```bash
git config --global user.name "Wonderful-Person"
```
## git init ## git init
## git clone ## git clone