Added current state of different documents. Finished github copilot manual.

This commit is contained in:
2025-12-09 17:17:34 +01:00
parent dd6024452d
commit 654db8f95c
8 changed files with 933 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Git Credentials speichern
```bash
git config --global credential.helper store
```
Anschließend werden bei erfolgreichen Logins an Remotes die Anmeldedaten in der Datei `~/.git-credentials` gespeichert.
```
Warnung:
Diese werden unverschlüsselt gespeichert.
```
# Konfiguration
```bash
git config user.name "ghost"
git config user.email "ma-koenig@gmx.net"
```