diff --git a/doc/alpine-git.md b/doc/alpine-git.md new file mode 100644 index 0000000..4088a17 --- /dev/null +++ b/doc/alpine-git.md @@ -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 "" +git config --global user.email "" +``` + +* verify contact details +``` +git config --list +``` diff --git a/doc/git.md b/doc/debian-git.md similarity index 100% rename from doc/git.md rename to doc/debian-git.md