Skip to content

Configuration

Fenêtre de terminal
git config --global user.name "Your Name"
git config --global user.email "your@email.com"

Required so that each commit is associated with your identity.


Fenêtre de terminal
git config --list

  • Use --global to configure system-wide settings, or omit it for a specific project.
  • Regularly check your configuration with git config --list.