From: Junio C Hamano
Date: Fri, 9 Nov 2007 10:03:46 +0000 (+0000)
Subject: Autogenerated HTML docs for v1.5.3.5-622-g6fd7a
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d7f027b0043ee6fa1fe8cce32f4f233e0c3a188;p=git.git
Autogenerated HTML docs for v1.5.3.5-622-g6fd7a
---
diff --git a/RelNotes-1.5.3.6.txt b/RelNotes-1.5.3.6.txt
new file mode 100644
index 000000000..06e44f773
--- /dev/null
+++ b/RelNotes-1.5.3.6.txt
@@ -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
diff --git a/RelNotes-1.5.4.txt b/RelNotes-1.5.4.txt
index 65dd1b0a2..93fb9c914 100644
--- a/RelNotes-1.5.4.txt
+++ b/RelNotes-1.5.4.txt
@@ -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
diff --git a/cmds-ancillarymanipulators.txt b/cmds-ancillarymanipulators.txt
index 2232d374f..f54ff1bcb 100644
--- a/cmds-ancillarymanipulators.txt
+++ b/cmds-ancillarymanipulators.txt
@@ -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.
diff --git a/cmds-plumbinginterrogators.txt b/cmds-plumbinginterrogators.txt
index 5c083ed6b..6ff1aef87 100644
--- a/cmds-plumbinginterrogators.txt
+++ b/cmds-plumbinginterrogators.txt
@@ -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.
diff --git a/cmds-synchingrepositories.txt b/cmds-synchingrepositories.txt
index 5c6075dca..ce00328bb 100644
--- a/cmds-synchingrepositories.txt
+++ b/cmds-synchingrepositories.txt
@@ -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
index e830deeff..000000000
--- a/git-local-fetch.txt
+++ /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 ::
- Writes the commit-id into the filename under $GIT_DIR/refs/ 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
-
- ['\t']
-
---recover::
- Verify that everything reachable from target is fetched. Used after
- an earlier fetch is interrupted.
-
-Author
-------
-Written by Junio C Hamano
-
-Documentation
---------------
-Documentation by David Greaves, Junio C Hamano and the git-list .
-
-GIT
----
-Part of the gitlink:git[7] suite
diff --git a/git-ssh-fetch.txt b/git-ssh-fetch.txt
deleted file mode 100644
index 8d3e2ffb2..000000000
--- a/git-ssh-fetch.txt
+++ /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
-
-Documentation
---------------
-Documentation by David Greaves, Junio C Hamano and the git-list .
-
-GIT
----
-Part of the gitlink:git[7] suite
diff --git a/git-ssh-upload.txt b/git-ssh-upload.txt
deleted file mode 100644
index 5e2ca8dcc..000000000
--- a/git-ssh-upload.txt
+++ /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
-
-Documentation
---------------
-Documentation by Daniel Barkalow
-
-GIT
----
-Part of the gitlink:git[7] suite
diff --git a/git.html b/git.html
index 009f91591..78bf0c327 100644
--- a/git.html
+++ b/git.html
@@ -720,7 +720,7 @@ ancillary user utilities.
- Recover lost refs that luckily have not yet been pruned.
+ (deprecated) Recover lost refs that luckily have not yet been pruned.
@@ -1249,7 +1249,7 @@ repositories.
- 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.
@@ -1298,14 +1298,6 @@ the working tree.
-git-local-fetch(1)
-
-
-
- Duplicate another git repository on a local system.
-
-
-
git-send-pack(1)
@@ -1314,22 +1306,6 @@ the working tree.
-git-ssh-fetch(1)
-
-
-
- Fetch from a remote repository over ssh connection.
-
-
-
-git-ssh-upload(1)
-
-
-
- Push to a remote repository over ssh connection.
-
-
-
git-update-server-info(1)
@@ -1949,7 +1925,7 @@ contributors on the git-list <git@vger.kernel.org>.