mirror of
https://codeberg.org/Mo8it/How_To_Linux.git
synced 2024-11-23 16:01:34 +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:
commit
bec077c825
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue