Autogenerated HTML docs for v1.5.6.1-108-g660379
authorJunio C Hamano <junio@hera.kernel.org>
Mon, 30 Jun 2008 09:05:08 +0000 (09:05 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Mon, 30 Jun 2008 09:05:08 +0000 (09:05 +0000)
RelNotes-1.6.0.txt
git-parse-remote.html
git-parse-remote.txt
git-rev-parse.html
git-rev-parse.txt
git-sh-setup.html
git-sh-setup.txt

index 5292bd730c30f2480221910b1a4c2de6c93cdb26..03e3a59ff5ba7660e2f660d4e5194c5cc81d5c18 100644 (file)
@@ -7,20 +7,16 @@ User visible changes
 [[Note that none of these are not merged to 'master' as of this writing
 but they will be before 1.6.0 happens]]
 
-With default Makefile settings, most of the programs are now installed
-outside your $PATH, except for "git", "gitk", "git-gui" and some server
-side programs that needs to be accessible when connecting over ssh.
-
-When talking to remote repository over ssh, necessary server side programs
-are now invoked with "git $program" notation, not with "git-$program"
-notation.  This should work with both servers running older git where you
-had all of these programs installed on $PATH, or newer git where you have
-only "git" on $PATH.  However, if the remote side is running a custom
-software that restricts programs you can run over ssh, it might cause
-problems.  Use --upload-pack="git-upload-pack" (when using ls-remote,
-fetch and pull on the client side), --receive-pack="git-receive-pack"
-(when using push on the client side), or --exec="git-upload-archive" (when
-using git-archive) as appropriate when talking to such a remote.
+With the default Makefile settings, most of the programs are now
+installed outside your $PATH, except for "git", "gitk", "git-gui" and
+some server side programs that need to be accessible for technical
+reasons.  Invoking a git subcommand as "git-xyzzy" from the command
+line has been deprecated since early 2006 (and officially announced in
+1.5.4 release notes); use of them from your scripts after adding
+output from "git --exec-path" to the $PATH is still supported in this
+release, but users are again strongly encouraged to adjust their
+scripts to use "git xyzzy" form, as we will stop installing
+"git-xyzzy" hardlinks for built-in commands in later releases.
 
 Source changes needed for porting to MinGW environment are now all in the
 main git.git codebase.
@@ -31,6 +27,9 @@ Updates since v1.5.6
 
 (subsystems)
 
+* git-p4 in contrib learned "allowSubmit" configuration to control on
+  which branch to allow "submit" subcommand.
+
 (portability)
 
 * Sample hook scripts shipped in templates/ are now suffixed with
@@ -47,7 +46,13 @@ Updates since v1.5.6
 
 * Updated howto/update-hook-example
 
-(performance, robustness etc.)
+* Got rid of usage of "git-foo" from the tutorial.
+
+* Disambiguating "--" between revs and paths is finally documented.
+
+(performance, robustness, sanity etc.)
+
+* even more documentation pages are now accessible via "man" and "git help".
 
 * reduced excessive inlining to shrink size of the "git" binary.
 
@@ -67,6 +72,9 @@ Updates since v1.5.6
   objects created will be fsync'ed (this is only useful on filesystems
   that does not order data writes properly).
 
+* "git commit-tree" plumbing can make Octopus with more than 16 parents.
+  "git commit" has been capable of this for quite some time.
+
 (usability, bells and whistles)
 
 * git-archive can be told to omit certain paths from its output using
@@ -100,6 +108,6 @@ this release, unless otherwise noted.
 
 ---
 exec >/var/tmp/1
-O=v1.5.6.1-77-gf9a08f6
+O=v1.5.6.1-104-ga08b868
 echo O=$(git describe refs/heads/master)
 git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
index 1fb545f5a189a60d574581359518cb64b267ec99..a64800b4e0e2919ab0ede3866aae3c5d8f1a9270 100644 (file)
@@ -272,7 +272,7 @@ git-parse-remote(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>. git-parse-remote</em></p>\r
+<p><em>. "$(git --exec-path)/git-parse-remote"</em></p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -326,7 +326,7 @@ get_remote_refs_for_push
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Jun-2008 01:33:58 UTC\r
+Last updated 30-Jun-2008 09:04:38 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 951dbd6c830a15cafaa7281cb1c6de357d97b4cc..421312eca91d68711a08e6747e7730d77ba006aa 100644 (file)
@@ -8,7 +8,7 @@ git-parse-remote - Routines to help parsing remote repository access parameters
 
 SYNOPSIS
 --------
-'. git-parse-remote'
+'. "$(git --exec-path)/git-parse-remote"'
 
 DESCRIPTION
 -----------
index c1a454061e27cbb6cefdf042aa166e21f092309c..eb27abbffe2bb09490bd94fdef0b6d9e2768dd5a 100644 (file)
@@ -621,7 +621,10 @@ A ref followed by the suffix <em>@</em> with a date specification
   second ago}</em> or <em>{1979-02-26 18:30:00}</em>) to specify the value\r
   of the ref at a prior point in time.  This suffix may only be\r
   used immediately following a ref name and the ref must have an\r
-  existing log ($GIT_DIR/logs/&lt;ref&gt;).\r
+  existing log ($GIT_DIR/logs/&lt;ref&gt;). Note that this looks up the state\r
+  of your <strong>local</strong> ref at a given time; e.g., what was in your local\r
+  <tt>master</tt> branch last week. If you want to look at commits made during\r
+  certain times, see <tt>--since</tt> and <tt>--until</tt>.\r
 </p>\r
 </li>\r
 <li>\r
@@ -913,7 +916,7 @@ Junio C Hamano &lt;junkio@cox.net&gt; and Pierre Habouzit &lt;madcoder@debian.or
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Jun-2008 22:46:59 UTC\r
+Last updated 30-Jun-2008 09:04:38 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 9e273bc5a6ee091ad7b81254228d33fd4df5541e..59e95adf42d1d481d636929a0b3ad79eebc53426 100644 (file)
@@ -184,7 +184,10 @@ blobs contained in a commit.
   second ago\}' or '\{1979-02-26 18:30:00\}') to specify the value
   of the ref at a prior point in time.  This suffix may only be
   used immediately following a ref name and the ref must have an
-  existing log ($GIT_DIR/logs/<ref>).
+  existing log ($GIT_DIR/logs/<ref>). Note that this looks up the state
+  of your *local* ref at a given time; e.g., what was in your local
+  `master` branch last week. If you want to look at commits made during
+  certain times, see `--since` and `--until`.
 
 * A ref followed by the suffix '@' with an ordinal specification
   enclosed in a brace pair (e.g. '\{1\}', '\{15\}') to specify
index 769e1c87f19c65a96e5fc10dc8cefdfbf7252821..ef0f26e88da8ed2b26a3c30469e7ae9a51b3adb9 100644 (file)
@@ -272,7 +272,7 @@ git-sh-setup(1) Manual Page
 </div>\r
 <h2>SYNOPSIS</h2>\r
 <div class="sectionbody">\r
-<p><em>git-sh-setup</em></p>\r
+<p><em>. "$(git --exec-path)/git-sh-setup"</em></p>\r
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
@@ -383,7 +383,7 @@ get_author_ident_from_commit
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 08-Jun-2008 01:34:15 UTC\r
+Last updated 30-Jun-2008 09:04:39 UTC\r
 </div>\r
 </div>\r
 </body>\r
index c543170342030e318e87e75c29f23334655ee7ce..6731f9ac4cc15a757600375307e4a10e32f4424a 100644 (file)
@@ -7,7 +7,7 @@ git-sh-setup - Common git shell script setup code
 
 SYNOPSIS
 --------
-'git-sh-setup'
+'. "$(git --exec-path)/git-sh-setup"'
 
 DESCRIPTION
 -----------