Autogenerated HTML docs for v1.4.4.1-gaed4
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 29 Nov 2006 20:40:10 +0000 (20:40 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 29 Nov 2006 20:40:10 +0000 (20:40 +0000)
git-repo-config.html
git-repo-config.txt
tutorial.html
tutorial.txt

index 6c0011bd372aa26314da7de2d3052a9ab3869207..f6bcb40d7ebc4771bb79b6f2ef6a004ea41628dd 100644 (file)
@@ -406,6 +406,22 @@ you use --global option without $HOME being properly set.
         List all variables set in config file.\r
 </p>\r
 </dd>\r
+<dt>\r
+--bool\r
+</dt>\r
+<dd>\r
+<p>\r
+        git-repo-config will ensure that the output is "true" or "false"\r
+</p>\r
+</dd>\r
+<dt>\r
+--int\r
+</dt>\r
+<dd>\r
+<p>\r
+        git-repo-config will ensure that the output is a simple decimal number\r
+</p>\r
+</dd>\r
 </dl>\r
 </div>\r
 <h2>ENVIRONMENT</h2>\r
@@ -1117,7 +1133,7 @@ receive.denyNonFastForwards
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 24-Nov-2006 12:10:50 UTC\r
+Last updated 29-Nov-2006 20:39:59 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 8199615dde6630124c155bb4a296603dc8829c83..5bede9ac22d260d703c5632f44ffc404013650d0 100644 (file)
@@ -77,6 +77,12 @@ OPTIONS
 -l, --list::
        List all variables set in config file.
 
+--bool::
+       git-repo-config will ensure that the output is "true" or "false"
+
+--int::
+       git-repo-config will ensure that the output is a simple decimal number
+
 
 ENVIRONMENT
 -----------
index 7570095f99ccf3ef6b43cad67134a9eff8fa925d..77b3f79d648150747a48d149a1aef4a033645ab5 100644 (file)
@@ -271,6 +271,16 @@ diff" with:</p>
 <div class="content">\r
 <pre><tt>$ man git-diff</tt></pre>\r
 </div></div>\r
+<p>It is a good idea to introduce yourself to git before doing any\r
+operation.  The easiest way to do so is:</p>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ cat &gt;~/.gitconfig &lt;&lt;\EOF\r
+[user]\r
+        name = Your Name Comes Here\r
+        email = you@yourdomain.example.com\r
+EOF</tt></pre>\r
+</div></div>\r
 </div>\r
 </div>\r
 <h2>Importing a new project</h2>\r
@@ -290,7 +300,8 @@ $ git init-db</tt></pre>
 </div></div>\r
 <p>You've now initialized the working directory&#8212;you may notice a new\r
 directory created, named ".git".  Tell git that you want it to track\r
-every file under the current directory with</p>\r
+every file under the current directory with (notice the dot <em>.</em>\r
+that means the current directory):</p>\r
 <div class="listingblock">\r
 <div class="content">\r
 <pre><tt>$ git add .</tt></pre>\r
@@ -298,7 +309,7 @@ every file under the current directory with</p>
 <p>Finally,</p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ git commit -a</tt></pre>\r
+<pre><tt>$ git commit</tt></pre>\r
 </div></div>\r
 <p>will prompt you for a commit message, then record the current state\r
 of all the files to the repository.</p>\r
@@ -310,10 +321,16 @@ of all the files to the repository.</p>
 <p>to review your changes.  When you're done,</p>\r
 <div class="listingblock">\r
 <div class="content">\r
-<pre><tt>$ git commit -a</tt></pre>\r
+<pre><tt>$ git commit file1 file2...</tt></pre>\r
 </div></div>\r
 <p>will again prompt your for a message describing the change, and then\r
-record the new versions of the modified files.</p>\r
+record the new versions of the files you listed.  It is cumbersome\r
+to list all files and you can say <tt>-a</tt> (which stands for <em>all</em>)\r
+instead.</p>\r
+<div class="listingblock">\r
+<div class="content">\r
+<pre><tt>$ git commit -a</tt></pre>\r
+</div></div>\r
 <p>A note on commit messages: Though not required, it's a good idea to\r
 begin the commit message with a single short (less than 50 character)\r
 line summarizing the change, followed by a blank line and then a more\r
@@ -326,7 +343,7 @@ commit in the body.</p>
 <pre><tt>$ git add path/to/new/file</tt></pre>\r
 </div></div>\r
 <p>then commit as usual.  No special command is required when removing a\r
-file; just remove it, then commit.</p>\r
+file; just remove it, then tell <tt>commit</tt> about the file as usual.</p>\r
 <p>At any point you can view the history of your changes using</p>\r
 <div class="listingblock">\r
 <div class="content">\r
@@ -710,7 +727,7 @@ digressions that may be interesting at this point are:</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 26-Nov-2006 07:28:21 UTC\r
+Last updated 29-Nov-2006 20:40:00 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 35af81a3debc9ebd3c5475343cb5ca293b414b5d..fe4491de41d1bcaeb56d5152e580eb483b0a12b0 100644 (file)
@@ -11,6 +11,18 @@ diff" with:
 $ man git-diff
 ------------------------------------------------
 
+It is a good idea to introduce yourself to git before doing any
+operation.  The easiest way to do so is:
+
+------------------------------------------------
+$ cat >~/.gitconfig <<\EOF
+[user]
+       name = Your Name Comes Here
+       email = you@yourdomain.example.com
+EOF
+------------------------------------------------
+
+
 Importing a new project
 -----------------------
 
@@ -31,7 +43,8 @@ defaulting to local storage area
 
 You've now initialized the working directory--you may notice a new
 directory created, named ".git".  Tell git that you want it to track
-every file under the current directory with
+every file under the current directory with (notice the dot '.'
+that means the current directory):
 
 ------------------------------------------------
 $ git add .
@@ -40,7 +53,7 @@ $ git add .
 Finally,
 
 ------------------------------------------------
-$ git commit -a
+$ git commit
 ------------------------------------------------
 
 will prompt you for a commit message, then record the current state
@@ -55,11 +68,17 @@ $ git diff
 to review your changes.  When you're done,
 
 ------------------------------------------------
-$ git commit -a
+$ git commit file1 file2...
 ------------------------------------------------
 
 will again prompt your for a message describing the change, and then
-record the new versions of the modified files.
+record the new versions of the files you listed.  It is cumbersome
+to list all files and you can say `-a` (which stands for 'all')
+instead.
+
+------------------------------------------------
+$ git commit -a
+------------------------------------------------
 
 A note on commit messages: Though not required, it's a good idea to
 begin the commit message with a single short (less than 50 character)
@@ -75,7 +94,7 @@ $ git add path/to/new/file
 ------------------------------------------------
 
 then commit as usual.  No special command is required when removing a
-file; just remove it, then commit.
+file; just remove it, then tell `commit` about the file as usual.
 
 At any point you can view the history of your changes using