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