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 | 20 | |
23 | Globaler Nutzer | |
24 | %%(cl) git config --global user.name "Globaler Git-Nutzername" %% | |
25 | https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git | |
26 | | | |
27 | Globale E-Mail | |
28 | %%(cl) git config --global user.email "webmaster@example.com" %% | |
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%% | |
29 | 25 | |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 | 26 | bzw. %%(cl) cat /home/(username)/.gitconfig%% |
37 | 27 | |
38 | 28 |