Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 490 Bytes

File metadata and controls

37 lines (27 loc) · 490 Bytes
title Git config
category Git

Rappel

Ne pas oublier : l'aide en ligne de commande.

git help config
git help push
git help pull
git help branch

Configuration

# Identity Name
git config --global user.name "aquelito"

# Identity Email
git config --global user.email "axel@aquelito.fr"

# Editor Tool
git config --global core.editor subl

# Diff Tool
git config --global merge.tool filemerge

Liste des globals

git config --list