feat: adjust git doc

This commit is contained in:
dancingCycle 2022-12-22 14:32:11 +01:00
parent a69563949b
commit d7afed94da
2 changed files with 27 additions and 0 deletions

27
doc/alpine-git.md Normal file
View File

@ -0,0 +1,27 @@
# Setup Git
* update your APT cache using
```
doas apk update
```
* install Git from Debian's APT repository
```
doas apk add git
```
* verify installation
```
git --version
```
* provide contact details to be embedded in the commit message
```
git config --global user.name "<tbd>"
git config --global user.email "<tbd>"
```
* verify contact details
```
git config --list
```