| 22 |
|
Globale E-Mail
|
| 23 |
|
%%(cl) git config --global user.email "webmaster@example.com" %%
|
| 24 |
|
|
| 25 |
|
|
| 26 |
|
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
|
| 27 |
|
|
| 28 |
|
Globale Konfiguration überprüfen:
|
| 29 |
|
%%(cl) git config --global --list --show-origin%%
|
| 30 |
|
bzw. %%(cl) cat /home/(username)/.gitconfig%%
|
| 31 |
|
|
| |
20 |
Globaler Nutzer, Globale E-Mail und Globale Konfiguration überprüfen:
|
| |
21 |
%%(cl) git config --global user.name "Globaler Git-Nutzername"
|
| |
22 |
git config --global user.email "webmaster@example.com"
|
| |
23 |
git config --global --list --show-origin%%
|
| 44 |
|
Lokalen GitNutzer Namen einrichten
|
| 45 |
|
%%(cl) git config user.name "Vorname Name" %%
|
| 46 |
|
|
| 47 |
|
E-Mail Adresse zum Lokalen GitNutzer einrichten
|
| 48 |
|
%%(cl) git config user.email "user@example.com" %%
|
| 49 |
|
|
| 50 |
|
Konfigurationsdatei für Dein Repository überprüfen:
|
| 51 |
|
%%(cl) cat /home/(username)/Projekt/Lokal/(LokalerGitNutzername)/MeinWiki/.git/config%%
|
| |
36 |
Lokalen GitNutzer Namen und E-Mail Adresse zum Lokalen GitNutzer einrichten, Konfigurationsdatei für Dein Repository überprüfen:
|
| |
37 |
%%(cl) git config user.name "Vorname Name"
|
| |
38 |
git config user.email "user@example.com" %%
|
| |
39 |
cat /home/(username)/Projekt/Lokal/(LokalerGitNutzername)/MeinWiki/.git/config
|
| |
40 |
%%
|