aboutsummaryrefslogtreecommitdiffstats
path: root/using-git.texinfo
diff options
context:
space:
mode:
Diffstat (limited to 'using-git.texinfo')
-rw-r--r--using-git.texinfo25
1 files changed, 25 insertions, 0 deletions
diff --git a/using-git.texinfo b/using-git.texinfo
index b20677a..2f4f1dd 100644
--- a/using-git.texinfo
+++ b/using-git.texinfo
@@ -65,6 +65,7 @@ Texts. A copy of the license is included in the section entitled
@chapter Getting started
@menu
+* Identify yourself::
* Create a repository::
* Create an origin::
* Gratis hosting::
@@ -73,6 +74,30 @@ Texts. A copy of the license is included in the section entitled
+@node Identify yourself
+@section Identify yourself
+
+The first thing you want to do right off the bat
+is to identify yourself: add your name and e-mail
+address to your Git configurations. This is
+done with two simple commands:
+
+@example
+git config --global user.name 'YOUR NAME'
+git config --global user.email 'YOUR_EMAIL_ADDRESS'
+@end example
+
+It is possible to sign your work with GPG. If you
+are planning on doing this, and doing this with
+another GPG key then your default key, you can
+configure Git to using another key by default:
+
+@example
+git configre --global user.signingkey YOUR_GPG_KEY_ID
+@end example
+
+
+
@node Create a repository
@section Create a repository