Development using git:Configuration

From Alpine Linux
Revision as of 15:47, 4 July 2011 by Fab (talk | contribs) (Created page with "== Configure your global git config == First you need to tell your name and email to git. This name and email will show up in all your commits. {{Cmd|<nowiki>git config --global...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Configure your global git config

First you need to tell your name and email to git. This name and email will show up in all your commits.

git config --global user.name "Your Name Comes Here" git config --global user.email you@yourdomain.example.com

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