Include:Git configuration

From Alpine Linux
Revision as of 11:08, 3 October 2025 by Prabuanand (talk | contribs) (moved the content from Development using git:Configuration)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.