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