Skip to content
Snippets Groups Projects
Commit 4aaeabcb authored by Reimar Döffinger's avatar Reimar Döffinger
Browse files

Explain how to set up user name/email correctly for git.

parent 326851b9
No related branches found
No related tags found
No related merge requests found
......@@ -130,6 +130,11 @@ I. BASICS:
git add [-i|-p|-A] <filenames/dirnames>
Make sure you have told git your name and email address, e.g. by running
git config --global user.name "My Name"
git config --global user.email my@email.invalid
(--global to set the global configuration for all your git checkouts).
Git will select the changes to the files for commit. Optionally you can use
the interactive or the patch mode to select hunk by hunk what should be
added to the commit.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment