Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The settings map use of a specific private key identity file to authentication with a specific Git server.

Git Configuration Items

Typical configuration A typical configuration performed with a Git client looks like this:

Code Block
titleExample for Git config file
linenumberstrue
# Specify user name
git config --global user.name "Its Me"

# Specify e-mail addresse
git config --global user.email "its.me@example.com"

# Use simple merge strategy
git config --global push.default simple

...