Autogenerated HTML docs for v1.5.3.6-950-g92b7b
authorJunio C Hamano <junio@hera.kernel.org>
Sun, 25 Nov 2007 04:56:07 +0000 (04:56 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Sun, 25 Nov 2007 04:56:07 +0000 (04:56 +0000)
RelNotes-1.5.4.txt
cmds-purehelpers.txt
git-peek-remote.html
git-peek-remote.txt
git-push.html
git-push.txt
git.html

index a4a2a7f429bc71884b823dffd8db5a1c10b34ecb..ff4d3d82b0ddfa825a1ae002d5e52665255310cd 100644 (file)
@@ -6,6 +6,14 @@ Updates since v1.5.3
 
  * Comes with much improved gitk.
 
+ * Comes with git-gui 0.9.0 with i18n.
+
+ * git-lost-found was deprecated in favor of git-fsck's --lost-found
+   option.
+
+ * git-peek-remote is deprecated, as git-ls-remote was written in C and
+   works for all transports.
+
  * "progress display" from many commands are a lot nicer to the
    eye.  Transfer commands show throughput data.
 
@@ -15,6 +23,11 @@ Updates since v1.5.3
 
  * git-rebase learned --whitespace option.
 
+ * In git-rebase, when you decide not to replay a particular change
+   after the command stopped with a conflict, you can say "git-rebase
+   --skip" without first running "git reset --hard", as the command now
+   run it for you.
+
  * git-remote knows --mirror mode.
 
  * git-merge can call the "post-merge" hook.
@@ -37,11 +50,20 @@ Updates since v1.5.3
    variable used to mean "do not require", but we now use the safer
    default).
 
+ * git-clean has been rewritten in C.
+
  * git-push has been rewritten in C.
 
  * git-push learned --dry-run option to show what would happen
    if a push is run.
 
+ * git-push does not update a tracking ref on the pushing side when the
+   remote refused to update the corresponding ref.
+
+ * git-push learned --mirror option.  This is to push the local refs
+   one-to-one to the remote, and deletes refs from the remote that do
+   not exist anymore in the repository on the pushing side.
+
  * git-remote learned "rm" subcommand.
 
  * git-rebase --interactive mode can now work on detached HEAD.
@@ -54,9 +76,6 @@ Updates since v1.5.3
 
  * Various Perforce importer updates.
 
- * git-lost-found was deprecated in favor of git-fsck's --lost-found
-   option.
-
  * "git log" learned --early-output option to help interactive
    GUI implementations.
 
@@ -86,6 +105,17 @@ Updates since v1.5.3
    to allow checking out a path outside the current directory
    without cd'ing up.
 
+ * "git send-email --dry-run" shows full headers for easier
+   diagnosis.
+
+ * "git merge-ours" is built-in.
+
+ * "git svn" learned "info" subcommand.
+
+ * "git status" from a subdirectory now shows relative paths
+   which makes copy-and-pasting for git-checkout/git-add/git-rm
+   easier.
+
  * Output processing for '--pretty=format:<user format>' has
    been optimized.
 
@@ -119,6 +149,6 @@ this release, unless otherwise noted.
 
 --
 exec >/var/tmp/1
-O=v1.5.3.6-727-g5d3d1ca
+O=v1.5.3.6-950-gda03a58
 echo O=`git describe refs/heads/master`
 git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
index 9880388deb49d3121f897f951f8de7205b596209..d54a84c58417b6cc43833b55deaeb608de810842 100644 (file)
@@ -20,7 +20,7 @@ gitlink:git-patch-id[1]::
        Compute unique ID for a patch.
 
 gitlink:git-peek-remote[1]::
-       List the references in a remote repository.
+       (deprecated) List the references in a remote repository.
 
 gitlink:git-sh-setup[1]::
        Common git shell script setup code.
index a1418c2c4fa31984cf659cbfa530291ca5e52fc5..740a2585c1e340bbbcfae22f035628f258516fcd 100644 (file)
@@ -276,8 +276,7 @@ git-peek-remote(1) Manual Page
 </div>\r
 <h2>DESCRIPTION</h2>\r
 <div class="sectionbody">\r
-<p>Lists the references the remote repository has, and optionally\r
-stores them in the local repository under the same name.</p>\r
+<p>This command is deprecated; use <tt>git-ls-remote</tt> instead.</p>\r
 </div>\r
 <h2>OPTIONS</h2>\r
 <div class="sectionbody">\r
@@ -341,7 +340,7 @@ stores them in the local repository under the same name.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 14-Nov-2007 12:11:41 UTC\r
+Last updated 25-Nov-2007 04:55:50 UTC\r
 </div>\r
 </div>\r
 </body>\r
index abc171266a35299159308d0653bb0c659b8bdc77..38a5325af79b8ecdd7893f7cbd5a27da325cb1a5 100644 (file)
@@ -12,8 +12,7 @@ SYNOPSIS
 
 DESCRIPTION
 -----------
-Lists the references the remote repository has, and optionally
-stores them in the local repository under the same name.
+This command is deprecated; use `git-ls-remote` instead.
 
 OPTIONS
 -------
index 6d2925f49370d16e1e0351e105d63d33091119c8..6746b075765c853537417beaf3787377957a8f7a 100644 (file)
@@ -335,6 +335,19 @@ the remote repository.</p>
 </p>\r
 </dd>\r
 <dt>\r
+--mirror\r
+</dt>\r
+<dd>\r
+<p>\r
+        Instead of naming each ref to push, specifies that all\r
+        refs under <tt>$GIT_DIR/refs/heads/</tt> and <tt>$GIT_DIR/refs/tags/</tt>\r
+        be mirrored to the remote repository.  Newly created local\r
+        refs will be pushed to the remote end, locally updated refs\r
+        will be force updated on the remote end, and deleted refs\r
+        will be removed from the remote end.\r
+</p>\r
+</dd>\r
+<dt>\r
 --dry-run\r
 </dt>\r
 <dd>\r
@@ -621,7 +634,7 @@ by Linus Torvalds &lt;torvalds@osdl.org&gt;</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 17-Nov-2007 20:50:32 UTC\r
+Last updated 25-Nov-2007 04:55:50 UTC\r
 </div>\r
 </div>\r
 </body>\r
index 4a68aaba342bd1155beb2ae72fd81c701e6c80eb..b8003c63c7e51dc1e3907645b267805dfb5f38d6 100644 (file)
@@ -63,6 +63,14 @@ the remote repository.
        Instead of naming each ref to push, specifies that all
        refs under `$GIT_DIR/refs/heads/` be pushed.
 
+\--mirror::
+       Instead of naming each ref to push, specifies that all
+       refs under `$GIT_DIR/refs/heads/` and `$GIT_DIR/refs/tags/`
+       be mirrored to the remote repository.  Newly created local
+       refs will be pushed to the remote end, locally updated refs
+       will be force updated on the remote end, and deleted refs
+       will be removed from the remote end.
+
 \--dry-run::
        Do everything except actually send the updates.
 
index 5978784efeac1e7630b00d5fb2b7d092d7d3703c..03174115dc99582e7c0bd5cd8701e66cbb886383 100644 (file)
--- a/git.html
+++ b/git.html
@@ -1439,7 +1439,7 @@ users typically do not use them directly.</p>
 </dt>\r
 <dd>\r
 <p>\r
-        List the references in a remote repository.\r
+        (deprecated) List the references in a remote repository.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -1925,7 +1925,7 @@ contributors on the git-list &lt;git@vger.kernel.org&gt;.</p>
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Last updated 20-Nov-2007 04:52:57 UTC\r
+Last updated 25-Nov-2007 04:55:50 UTC\r
 </div>\r
 </div>\r
 </body>\r