Sync with v1.8.4.2
authorJunio C Hamano <gitster@pobox.com>
Mon, 28 Oct 2013 17:51:53 +0000 (10:51 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 28 Oct 2013 17:51:53 +0000 (10:51 -0700)
Documentation/RelNotes/1.8.4.2.txt
Documentation/git.txt
sha1_file.c
t/test-lib.sh
index 867ae69070d01dae59352d6d5e684a51288b026c..9adccb1efb8d3fe8a117fdd13b40abb1cb757fb7 100644 (file)
@@ -4,6 +4,20 @@ Git v1.8.4.2 Release Notes
 Fixes since v1.8.4.1
 --------------------
 
+ * "git clone" gave some progress messages to the standard output, not
+   to the standard error, and did not allow suppressing them with the
+   "--no-progress" option.
+
+ * "format-patch --from=<whom>" forgot to omit unnecessary in-body
+   from line, i.e. when <whom> is the same as the real author.
+
+ * "git shortlog" used to choke and die when there is a malformed
+   commit (e.g. missing authors); it now simply ignore such a commit
+   and keeps going.
+
+ * "git merge-recursive" did not parse its "--diff-algorithm=" command
+   line option correctly.
+
  * "git branch --track" had a minor regression in v1.8.3.2 and later
    that made it impossible to base your local work on anything but a
    local branch of the upstream repository you are tracking from.
index 4f7e07f2e0f4f6317c81467f7f880b4113b12de1..824a179a965ba419492840afb55d1d55e038ed0e 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.4.1/git.html[documentation for release 1.8.4.1]
+* link:v1.8.4.2/git.html[documentation for release 1.8.4.2]
 
 * release notes for
+  link:RelNotes/1.8.4.2.txt[1.8.4.2],
   link:RelNotes/1.8.4.1.txt[1.8.4.1],
   link:RelNotes/1.8.4.txt[1.8.4].
 
index f80bbe467437a4ffc161a4cdd09f97cf5436d4f9..7dadd04cb75a9f681cab17f616600cf437fe82ba 100644 (file)
@@ -2514,7 +2514,6 @@ static int sha1_loose_object_info(const unsigned char *sha1,
        return 0;
 }
 
-/* returns enum object_type or negative */
 int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi)
 {
        struct cached_object *co;
@@ -2563,6 +2562,7 @@ int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi)
        return 0;
 }
 
+/* returns enum object_type or negative */
 int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
 {
        enum object_type type;
index 0fa7dfde7bbf201d4756202f3797854b54030ea8..3dc1792ebc8eac840adad10a189d33225aa9bc32 100644 (file)
@@ -325,7 +325,7 @@ trap 'die' EXIT
 . "$TEST_DIRECTORY/test-lib-functions.sh"
 
 # You are not expected to call test_ok_ and test_failure_ directly, use
-# the text_expect_* functions instead.
+# the test_expect_* functions instead.
 
 test_ok_ () {
        test_success=$(($test_success + 1))