Development using git:Configuration

From Alpine Linux
Revision as of 13:42, 17 February 2025 by Prabuanand (talk | contribs) (made the content consistent with Include:Setup your system and account for building packages)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Configure your global git config

Configure your name and email address in git. This name and email address will show up in all your commits:

$ git config --global user.name "Your Full Name" $ git config --global user.email "your@email.address"

Using git config without --global let you configure other details for a specific git repository.