| 20 |
#||
|
20 |
Globaler Nutzer, Globale E-Mail und Globale Konfiguration überprüfen und mit :q zurück zur Konsole:
|
| 21 |
||
|
21 |
%%(cl) git config --global user.name "Globaler Git-Nutzername"
|
| 22 |
Globaler Nutzer
|
22 |
git config --global user.email "webmaster@example.com"
|
| 23 |
%%(cl) git config --global user.name "Globaler Git-Nutzername" %%
|
23 |
git config --global --list --show-origin %%
|
| 24 |
https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git
|
|
|
| 25 |
|
|
|
|
| 26 |
Globale E-Mail
|
|
|
| 27 |
%%(cl) git config --global user.email "webmaster@example.com" %%
|
|
|
| 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 |
||#
|
|
|
| 32 |
|
|
|
| 33 |
Globale Konfiguration überprüfen:
|
|
|
| 34 |
%%(cl) git config --global --list --show-origin%%
|
|
|
| 35 |
bzw. %%(cl) cat /home/(username)/.gitconfig%%
|
|
|
| 36 |
|
|
|
| 49 |
Lokalen GitNutzer Namen einrichten
|
36 |
Lokalen GitNutzer Namen und E-Mail Adresse zum Lokalen GitNutzer einrichten, Konfigurationsdatei für Dein Repository überprüfen:
|
| 50 |
%%(cl) git config user.name "Vorname Name" %%
|
37 |
%%(cl) git config user.name "Vorname Name"
|
| 51 |
|
38 |
git config user.email "user@example.com"
|
| 52 |
E-Mail Adresse zum Lokalen GitNutzer einrichten
|
39 |
cat /home/(username)/Projekt/Lokal/(LokalerGitNutzername)/MeinWiki/.git/config
|
| 53 |
%%(cl) git config user.email "user@example.com" %%
|
40 |
%%
|
| 54 |
|
|
|
| 55 |
Konfigurationsdatei für Dein Repository überprüfen:
|
|
|
| 56 |
%%(cl) cat /home/(username)/Projekt/Lokal/(LokalerGitNutzername)/MeinWiki/.git/config%%
|
|
|
| 57 |
|
|
|
| 58 |
Globale und lokale Nutzerkonten | Statusinformationen |
|
|
|