Autogenerated HTML docs for v1.5.3.5-622-g6fd7a
authorJunio C Hamano <junio@hera.kernel.org>
Fri, 9 Nov 2007 10:03:46 +0000 (10:03 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Fri, 9 Nov 2007 10:03:46 +0000 (10:03 +0000)
RelNotes-1.5.3.6.txt [new file with mode: 0644]
RelNotes-1.5.4.txt
cmds-ancillarymanipulators.txt
cmds-plumbinginterrogators.txt
cmds-synchingrepositories.txt
git-local-fetch.txt [deleted file]
git-ssh-fetch.txt [deleted file]
git-ssh-upload.txt [deleted file]
git.html

diff --git a/RelNotes-1.5.3.6.txt b/RelNotes-1.5.3.6.txt
new file mode 100644 (file)
index 0000000..06e44f7
--- /dev/null
@@ -0,0 +1,21 @@
+GIT v1.5.3.6 Release Notes
+==========================
+
+Fixes since v1.5.3.5
+--------------------
+
+ * git-cvsexportcommit handles root commits better;
+
+ * git-svn dcommit used to clobber when sending a series of
+   patches;
+
+ * git-grep sometimes refused to work when your index was
+   unmerged;
+
+ * Quite a lot of documentation clarifications.
+
+--
+exec >/var/tmp/1
+O=v1.5.3.5-32-gcb6c162
+echo O=`git describe refs/heads/maint`
+git shortlog --no-merges $O..refs/heads/maint
index 65dd1b0a2d5e13665a774f4a981ed8c30e6ff37c..93fb9c914c38388b3b1db11d2b6e63183a9bb952 100644 (file)
@@ -6,7 +6,10 @@ Updates since v1.5.3
 
  * Comes with much improved gitk.
 
- * git-reset is now built-in.
+ * "progress display" from many commands are a lot nicer to the
+   eye.  Transfer commands show throughput data.
+
+ * git-reset is now built-in and its output can be squelched with -q.
 
  * git-send-email can optionally talk over ssmtp and use SMTP-AUTH.
 
@@ -49,6 +52,25 @@ Updates since v1.5.3
  * git-lost-found was deprecated in favor of git-fsck's --lost-found
    option.
 
+ * git-svnimport was removed in favor of git-svn.
+
+ * git-bisect learned "skip" action to mark untestable commits.
+
+ * rename detection diff family, while detecting exact matches,
+   has been greatly optimized.
+
+ * Example update and post-receive hooks have been improved.
+
+ * In addition there are quite a few internal clean-ups. Notably
+
+   - many fork/exec have been replaced with run-command API,
+     brought from the msysgit effort.
+
+   - introduction and more use of the option parser API.
+
+   - enhancement and more use of the strbuf API.
+
+
 Fixes since v1.5.3
 ------------------
 
@@ -57,6 +79,6 @@ this release, unless otherwise noted.
 
 --
 exec >/var/tmp/1
-O=v1.5.3.4-450-g952a9e5
+O=v1.5.3.5-618-g5d4138a
 echo O=`git describe refs/heads/master`
 git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
index 2232d374ff1b92b25c7804be0bfdae3d4725400e..f54ff1bcbef6792e1b818c3cefc6f57dad69a25d 100644 (file)
@@ -8,7 +8,7 @@ gitlink:git-filter-branch[1]::
        Rewrite branches.
 
 gitlink:git-lost-found[1]::
-       Recover lost refs that luckily have not yet been pruned.
+       (deprecated) Recover lost refs that luckily have not yet been pruned.
 
 gitlink:git-mergetool[1]::
        Run merge conflict resolution tools to resolve merge conflicts.
index 5c083ed6b0142e956c9cca838e1c5f7c843f13cf..6ff1aef87f55e465cd357edbd1aa8639a40f082b 100644 (file)
@@ -41,7 +41,7 @@ gitlink:git-show-ref[1]::
        List references in a local repository.
 
 gitlink:git-tar-tree[1]::
-       Create a tar archive of the files in the named tree object.
+       (deprecated) Create a tar archive of the files in the named tree object.
 
 gitlink:git-unpack-file[1]::
        Creates a temporary file with a blob's contents.
index 5c6075dcafde242f5b376364cd148c664a22778f..ce00328bbdc964ac965b7db4acdbe4c509f2769d 100644 (file)
@@ -4,18 +4,9 @@ gitlink:git-daemon[1]::
 gitlink:git-fetch-pack[1]::
        Receive missing objects from another repository.
 
-gitlink:git-local-fetch[1]::
-       Duplicate another git repository on a local system.
-
 gitlink:git-send-pack[1]::
        Push objects over git protocol to another repository.
 
-gitlink:git-ssh-fetch[1]::
-       Fetch from a remote repository over ssh connection.
-
-gitlink:git-ssh-upload[1]::
-       Push to a remote repository over ssh connection.
-
 gitlink:git-update-server-info[1]::
        Update auxiliary info file to help dumb servers.
 
diff --git a/git-local-fetch.txt b/git-local-fetch.txt
deleted file mode 100644 (file)
index e830dee..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-git-local-fetch(1)
-==================
-
-NAME
-----
-git-local-fetch - Duplicate another git repository on a local system
-
-
-SYNOPSIS
---------
-[verse]
-'git-local-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] [-l] [-s] [-n]
-                  commit-id path
-
-DESCRIPTION
------------
-THIS COMMAND IS DEPRECATED.
-
-Duplicates another git repository on a local system.
-
-OPTIONS
--------
--c::
-       Get the commit objects.
--t::
-       Get trees associated with the commit objects.
--a::
-       Get all the objects.
--v::
-       Report what is downloaded.
--s::
-       Instead of regular file-to-file copying use symbolic links to the objects
-       in the remote repository.
--l::
-       Before attempting symlinks (if -s is specified) or file-to-file copying the
-       remote objects, try to hardlink the remote objects into the local
-       repository.
--n::
-       Never attempt to file-to-file copy remote objects.  Only useful with
-       -s or -l command-line options.
-
--w <filename>::
-        Writes the commit-id into the filename under $GIT_DIR/refs/<filename> on
-        the local end after the transfer is complete.
-
---stdin::
-       Instead of a commit id on the command line (which is not expected in this
-       case), 'git-local-fetch' expects lines on stdin in the format
-
-               <commit-id>['\t'<filename-as-in--w>]
-
---recover::
-       Verify that everything reachable from target is fetched.  Used after
-       an earlier fetch is interrupted.
-
-Author
-------
-Written by Junio C Hamano <junkio@cox.net>
-
-Documentation
---------------
-Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
-
-GIT
----
-Part of the gitlink:git[7] suite
diff --git a/git-ssh-fetch.txt b/git-ssh-fetch.txt
deleted file mode 100644 (file)
index 8d3e2ff..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-git-ssh-fetch(1)
-================
-
-NAME
-----
-git-ssh-fetch - Fetch from a remote repository over ssh connection
-
-
-
-SYNOPSIS
---------
-'git-ssh-fetch' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
-
-DESCRIPTION
------------
-THIS COMMAND IS DEPRECATED.
-
-Pulls from a remote repository over ssh connection, invoking
-git-ssh-upload on the other end. It functions identically to
-git-ssh-upload, aside from which end you run it on.
-
-
-OPTIONS
--------
-commit-id::
-        Either the hash or the filename under [URL]/refs/ to
-        pull.
-
--c::
-       Get the commit objects.
--t::
-       Get trees associated with the commit objects.
--a::
-       Get all the objects.
--v::
-       Report what is downloaded.
--w::
-        Writes the commit-id into the filename under $GIT_DIR/refs/ on
-        the local end after the transfer is complete.
-
-
-Author
-------
-Written by Daniel Barkalow <barkalow@iabervon.org>
-
-Documentation
---------------
-Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
-
-GIT
----
-Part of the gitlink:git[7] suite
diff --git a/git-ssh-upload.txt b/git-ssh-upload.txt
deleted file mode 100644 (file)
index 5e2ca8d..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-git-ssh-upload(1)
-=================
-
-NAME
-----
-git-ssh-upload - Push to a remote repository over ssh connection
-
-
-SYNOPSIS
---------
-'git-ssh-upload' [-c] [-t] [-a] [-d] [-v] [-w filename] [--recover] commit-id url
-
-DESCRIPTION
------------
-THIS COMMAND IS DEPRECATED.
-
-Pushes from a remote repository over ssh connection, invoking
-git-ssh-fetch on the other end. It functions identically to
-git-ssh-fetch, aside from which end you run it on.
-
-OPTIONS
--------
-commit-id::
-        Id of commit to push.
-
--c::
-        Get the commit objects.
--t::
-        Get tree associated with the requested commit object.
--a::
-        Get all the objects.
--v::
-        Report what is uploaded.
--w::
-        Writes the commit-id into the filename under [URL]/refs/ on
-        the remote end after the transfer is complete.
-
-Author
-------
-Written by Daniel Barkalow <barkalow@iabervon.org>
-
-Documentation
---------------
-Documentation by Daniel Barkalow
-
-GIT
----
-Part of the gitlink:git[7] suite
index 009f915913b09ed005b77d3a8db5417ea6a4ac00..78bf0c3279a82f783fed0cb777953f4269653eed 100644 (file)
--- a/git.html
+++ b/git.html
@@ -720,7 +720,7 @@ ancillary user utilities.</p>
 </dt>\r
 <dd>\r
 <p>\r
-        Recover lost refs that luckily have not yet been pruned.\r
+        (deprecated) Recover lost refs that luckily have not yet been pruned.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -1249,7 +1249,7 @@ repositories.</p>
 </dt>\r
 <dd>\r
 <p>\r
-        Create a tar archive of the files in the named tree object.\r
+        (deprecated) Create a tar archive of the files in the named tree object.\r
 </p>\r
 </dd>\r
 <dt>\r
@@ -1298,14 +1298,6 @@ the working tree.</p>
 </p>\r
 </dd>\r
 <dt>\r
-<a href="git-local-fetch.html">git-local-fetch(1)</a>\r
-</dt>\r
-<dd>\r
-<p>\r
-        Duplicate another git repository on a local system.\r
-</p>\r
-</dd>\r
-<dt>\r
 <a href="git-send-pack.html">git-send-pack(1)</a>\r
 </dt>\r
 <dd>\r
@@ -1314,22 +1306,6 @@ the working tree.</p>
 </p>\r
 </dd>\r
 <dt>\r
-<a href="git-ssh-fetch.html">git-ssh-fetch(1)</a>\r
-</dt>\r
-<dd>\r
-<p>\r
-        Fetch from a remote repository over ssh connection.\r
-</p>\r
-</dd>\r
-<dt>\r
-<a href="git-ssh-upload.html">git-ssh-upload(1)</a>\r
-</dt>\r
-<dd>\r
-<p>\r
-        Push to a remote repository over ssh connection.\r
-</p>\r
-</dd>\r
-<dt>\r
 <a href="git-update-server-info.html">git-update-server-info(1)</a>\r
 </dt>\r
 <dd>\r
@@ -1949,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 02-Nov-2007 02:47:22 UTC\r
+Last updated 09-Nov-2007 10:03:24 UTC\r
 </div>\r
 </div>\r
 </body>\r