summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes/1.8.4.3.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-11-08 12:06:19 -0800
committerJunio C Hamano <gitster@pobox.com>2013-11-08 12:06:19 -0800
commitd7d2c87955f7700289c5b516f12579a5be4b879d (patch)
tree0b476e20c04755122ace29bbc882e6b2fd93cf66 /Documentation/RelNotes/1.8.4.3.txt
parentcdc0c0f52075e67be432807add1879a0799df583 (diff)
downloadgit-d7d2c87955f7700289c5b516f12579a5be4b879d.tar.gz
Git 1.8.4.3v1.8.4.3
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes/1.8.4.3.txt')
-rw-r--r--Documentation/RelNotes/1.8.4.3.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/RelNotes/1.8.4.3.txt b/Documentation/RelNotes/1.8.4.3.txt
index afb33598d0..03f3d17751 100644
--- a/Documentation/RelNotes/1.8.4.3.txt
+++ b/Documentation/RelNotes/1.8.4.3.txt
@@ -4,6 +4,24 @@ Git v1.8.4.3 Release Notes
Fixes since v1.8.4.2
--------------------
+ * The interaction between use of Perl in our test suite and NO_PERL
+ has been clarified a bit.
+
+ * A fast-import stream expresses a pathname with funny characters by
+ quoting them in C style; remote-hg remote helper (in contrib/)
+ forgot to unquote such a path.
+
+ * One long-standing flaw in the pack transfer protocol used by "git
+ clone" was that there was no way to tell the other end which branch
+ "HEAD" points at, and the receiving end needed to guess. A new
+ capability has been defined in the pack protocol to convey this
+ information so that cloning from a repository with more than one
+ branches pointing at the same commit where the HEAD is at now
+ reliably sets the initial branch in the resulting repository.
+
+ * We did not handle cases where http transport gets redirected during
+ the authorization request (e.g. from http:// to https://).
+
* "git rev-list --objects ^v1.0^ v1.0" gave v1.0 tag itself in the
output, but "git rev-list --objects v1.0^..v1.0" did not.