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 | || | |
20 | 22 | Globaler Nutzer |
21 | 23 | %%(cl) git config --global user.name "Globaler Git-Nutzername" %% |
22 | 24 | https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git |
23 |
|
|
25 | | | |
24 | 26 | Globale E-Mail |
25 | 27 | %%(cl) git config --global user.email "webmaster@example.com" %% |
26 | 28 | |
27 |
|
|
28 | 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 | ||# | |
29 | 32 | |
30 | 33 | Globale Konfiguration ĂŒberprĂŒfen: |
31 | 34 | %%(cl) git config --global --list --show-origin%% |