Versionsunterschiede von Git / Ein Eigenes Repository Einrichten
| 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 |
| 24 | :q%% |
| 25 | |
| 26 | |
| 27 | =====2. Ein leeres Git Repository initialisieren ==== |
| … | … |
| 36 | |
| 37 | Lokalen GitNutzer Namen und E-Mail Adresse zum Lokalen GitNutzer einrichten, Konfigurationsdatei für Dein Repository überprüfen: |
| 38 | %%(cl) git config user.name "Vorname Name" |
| 39 | git config user.email "user@example.com" |
| 40 | cat /home/(username)/Projekt/Lokal/(LokalerGitNutzername)/MeinWiki/.git/config |
| 41 | %% |
| 42 |