Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
info:git:config [2022/11/27 11:12] – [git config -l] franck | info:git:config [2022/12/10 07:30] (Version actuelle) – [git config: niveau de configuration] franck | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
======git config====== | ======git config====== | ||
- | =====git config -l===== | + | =====git config --list===== |
- | Afficher la configuration: | + | Afficher la configuration: |
<code bash> | <code bash> | ||
git config -l | git config -l | ||
git config --list | git config --list | ||
git config [--system|--global|--local] -l | git config [--system|--global|--local] -l | ||
+ | git config --list --show-origin | ||
</ | </ | ||
=====git config: niveau de configuration===== | =====git config: niveau de configuration===== | ||
Ligne 16: | Ligne 17: | ||
\\ | \\ | ||
__Exemples: | __Exemples: | ||
- | sur Linux definir | + | sur Linux définir |
<code bash> | <code bash> | ||
git config --global core.editor "kate -n" | git config --global core.editor "kate -n" | ||
- | git config --global | + | git config --list --show-origin |
</ | </ | ||
Sur Windows définir NotePad++ | Sur Windows définir NotePad++ | ||
<code batch> | <code batch> | ||
git config --global core.editor "' | git config --global core.editor "' | ||
- | git config --global | + | git config --list --show-origin |
</ | </ | ||
Sur Windows et Linux definir Visual Studio Code | Sur Windows et Linux definir Visual Studio Code | ||
<code bash> | <code bash> | ||
git config --global core.editor "code --wait" | git config --global core.editor "code --wait" | ||
- | git config --global | + | git config --list --show-origin |
</ | </ | ||
+ | \\ | ||
+ | __test de l' | ||
+ | <code bash> | ||
+ | git config --edit --global | ||
+ | </ | ||
+ | \\ | ||
===git config --local=== | ===git config --local=== | ||
niveau du dépôt: concerne uniquement le dépôt en cours. Prioritaire sur le niveau système et le niveau utilisateur.\\ | niveau du dépôt: concerne uniquement le dépôt en cours. Prioritaire sur le niveau système et le niveau utilisateur.\\ | ||
défini dans .git/config du dépôt.\\ | défini dans .git/config du dépôt.\\ | ||
+ | =====Configuration de son identité===== | ||
+ | Indispensable. Elle est utilisée lors de l' | ||
+ | <code bash> | ||
+ | git config --global user.name "toto bernard" | ||
+ | git config --global user.mail moi@domaine.com | ||
+ | </ |