Versionsunterschiede von Git / Ein Eigenes Repository Einrichten
17 | 17 | =====1. Git Globale Standardeinstellungen ==== |
---|---|---|
18 | 18 | den Hauptnutzer und die dazugehörige E-Mail-Adresse als Standardeinstellung in der Konfigurationsdatei für die Gesamtheit der auf Deinem Rechner gespeicherten Repositorys. |
19 | 19 | |
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 | 20 | |
29 | https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address | |
30 | || | |
31 | ||# | |
21 | Globaler Nutzer, Globale E-Mail und Globale Konfiguration überprüfen: | |
22 | %%(cl) git config --global user.name "Globaler Git-Nutzername" | |
23 | git config --global user.email "webmaster@example.com" | |
24 | git config --global --list --show-origin%% | |
32 | 25 | |
33 |
|
|
34 |
|
|
35 | 26 | bzw. %%(cl) cat /home/(username)/.gitconfig%% |
36 | 27 | |
37 | 28 |