]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Git 1.8.5.5 v1.8.5.5
authorJunio C Hamano <gitster@pobox.com>
Thu, 13 Feb 2014 21:40:47 +0000 (13:40 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 13 Feb 2014 21:41:53 +0000 (13:41 -0800)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/RelNotes/1.8.5.4.txt
Documentation/RelNotes/1.8.5.5.txt [new file with mode: 0644]
Documentation/git.txt
GIT-VERSION-GEN
RelNotes

index db3b3d3e3fb24dcaa77bf4120488299d0484542a..d18c40389ebab3b8c073d68e888ebbc811c5824a 100644 (file)
@@ -1,7 +1,7 @@
 Git v1.8.5.4 Release Notes
 ==========================
 
-Fixes since v1.8.5.4
+Fixes since v1.8.5.3
 --------------------
 
  * "git fetch --depth=0" was a no-op, and was silently ignored.
diff --git a/Documentation/RelNotes/1.8.5.5.txt b/Documentation/RelNotes/1.8.5.5.txt
new file mode 100644 (file)
index 0000000..9191ce9
--- /dev/null
@@ -0,0 +1,37 @@
+Git v1.8.5.5 Release Notes
+==========================
+
+Fixes since v1.8.5.4
+--------------------
+
+ * The pathspec matching code, while comparing two trees (e.g. "git
+   diff A B -- path1 path2") was too aggressive and failed to match
+   some paths when multiple pathspecs were involved.
+
+ * "git repack --max-pack-size=8g" stopped being parsed correctly when
+   the command was reimplemented in C.
+
+ * A recent update to "git send-email" broke platforms where
+   /etc/ssl/certs/ directory exists but cannot be used as SSL_ca_path
+   (e.g. Fedora rawhide).
+
+ * A handful of bugs around interpreting $branch@{upstream} notation
+   and its lookalike, when $branch part has interesting characters,
+   e.g. "@", and ":", have been fixed.
+
+ * "git clone" would fail to clone from a repository that has a ref
+   directly under "refs/", e.g. "refs/stash", because different
+   validation paths do different things on such a refname.  Loosen the
+   client side's validation to allow such a ref.
+
+ * "git log --left-right A...B" lost the "leftness" of commits
+   reachable from A when A is a tag as a side effect of a recent
+   bugfix.  This is a regression in 1.8.4.x series.
+
+ * "git merge-base --octopus" used to leave cleaning up suboptimal
+   result to the caller, but now it does the clean-up itself.
+
+ * "git mv A B/", when B does not exist as a directory, should error
+   out, but it didn't.
+
+Also contains typofixes, documentation updates and trivial code clean-ups.
index 36483181cb3ec884bf8d4cf9ce59d502d066e42f..64da795aba252d53e9fd9c11e6eb7d39397ff805 100644 (file)
@@ -43,9 +43,10 @@ unreleased) version of Git, that is available from 'master'
 branch of the `git.git` repository.
 Documentation for older releases are available here:
 
-* link:v1.8.5.4/git.html[documentation for release 1.8.5.4]
+* link:v1.8.5.5/git.html[documentation for release 1.8.5.5]
 
 * release notes for
+  link:RelNotes/1.8.5.5.txt[1.8.5.5],
   link:RelNotes/1.8.5.4.txt[1.8.5.4],
   link:RelNotes/1.8.5.3.txt[1.8.5.3],
   link:RelNotes/1.8.5.2.txt[1.8.5.2],
index ccec5effb152aba2c4895710d855cb5cf57990d9..c1b7e2d2c6949b7bd900c7991c58e590cce50494 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v1.8.5.4
+DEF_VER=v1.8.5.5
 
 LF='
 '
index f4ebd653fe8aefa813e4b95b18cadbfbdf22d805..277f28f953706b6de9fb1533e298985521d72996 120000 (symlink)
--- a/RelNotes
+++ b/RelNotes
@@ -1 +1 @@
-Documentation/RelNotes/1.8.5.4.txt
\ No newline at end of file
+Documentation/RelNotes/1.8.5.5.txt
\ No newline at end of file