Skip to content

Commit 2883969

Browse files
committed
Sync with maint
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parents efe7aec + 16b3b2d commit 2883969

File tree

2 files changed

+39
-41
lines changed

2 files changed

+39
-41
lines changed

Documentation/RelNotes/1.7.7.1.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
Git v1.7.7.1 Release Notes
2+
==========================
3+
4+
Fixes since v1.7.7
5+
------------------
6+
7+
* "git diff $tree $path" used to apply the pathspec at the output stage,
8+
reading the whole tree, wasting resources.
9+
10+
* The code to check for updated submodules during a "git fetch" of the
11+
superproject had an unnecessary quadratic loop.
12+
13+
* "git fetch" from a large bundle did not enable the progress output.
14+
15+
* When "git fsck --lost-and-found" found that an empty blob object in the
16+
object store is unreachable, it incorrectly reported an error after
17+
writing the lost blob out successfully.
18+
19+
* "git filter-branch" did not refresh the index before checking that the
20+
working tree was clean.
21+
22+
* "git grep $tree" when run with multiple threads had an unsafe access to
23+
the object database that should have been protected with mutex.
24+
25+
* The "--ancestry-path" option to "git log" and friends misbehaved in a
26+
history with complex criss-cross merges and showed an uninteresting
27+
side history as well.
28+
29+
* Test t1304 assumed LOGNAME is always set, which may not be true on
30+
some systems.
31+
32+
* Tests with --valgrind failed to find "mergetool" scriptlets.
33+
34+
* "git patch-id" miscomputed the patch-id in a patch that has a line longer
35+
than 1kB.
36+
37+
* When an "exec" insn failed after modifying the index and/or the working
38+
tree during "rebase -i", we now check and warn that the changes need to
39+
be cleaned up.

Documentation/RelNotes/1.7.8.txt

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -130,58 +130,17 @@ included in this release.
130130
against $a (i.e. source side of the remote nickname).
131131
(merge b52d00aed mz/remote-rename later to maint).
132132

133-
* "git diff $tree $path" used to apply the pathspec at the output stage,
134-
reading the whole tree, wasting resources.
135-
(merge 2f88c1970 jc/diff-index-unpack later to maint).
136-
137133
* "git diff --[num]stat" used to use the number of lines of context
138134
different from the default, potentially giving different results from
139135
"git diff | diffstat" and confusing the users.
140136
(merge f01cae918 jc/maint-diffstat-numstat-context later to maint).
141137

142-
* The code to check for updated submodules during a "git fetch" of the
143-
superproject had an unnecessary quadratic loop.
144-
(merge 6859de45 jk/maint-fetch-submodule-check-fix later to maint).
145-
146-
* "git fetch" from a large bundle did not enable the progress output.
147-
(merge be042aff jc/maint-bundle-too-quiet later to maint).
148-
149-
* When "git fsck --lost-and-found" found that an empty blob object in the
150-
object store is unreachable, it incorrectly reported an error after
151-
writing the lost blob out successfully.
152-
(merge eb726f2d jc/maint-fsck-fwrite-size-check later to maint).
153-
154-
* "git filter-branch" did not refresh the index before checking that the
155-
working tree was clean.
156-
(merge 5347a50f jk/filter-branch-require-clean-work-tree later to maint).
157-
158-
* "git grep $tree" when run with multiple threads had an unsafe access to
159-
the object database that should have been protected with mutex.
160-
(merge 8cb5775b2 nm/grep-object-sha1-lock later to maint).
161-
162-
* The "--ancestry-path" option to "git log" and friends misbehaved in a
163-
history with complex criss-cross merges and showed an uninteresting
164-
side history as well.
165-
(merge c05b988a6 bk/ancestry-path later to maint).
166-
167138
* "git merge" did not understand ":/<pattern>" as a way to name a commit.
168139

169140
* "git mergetool" learned to use its arguments as pathspec, not a path to
170141
the file that may not even have any conflict.
171142
(merge 6d9990a jm/mergetool-pathspec later to maint).
172143

173-
* Tests with --valgrind failed to find "mergetool" scriptlets.
174-
(merge ee0d7bf92 tr/mergetool-valgrind later to maint).
175-
176-
* "git patch-id" miscomputed the patch-id in a patch that has a line longer
177-
than 1kB.
178-
(merge b9ab810b ms/patch-id-with-overlong-line later to maint).
179-
180-
* When an "exec" insn failed after modifying the index and/or the working
181-
tree during "rebase -i", we now check and warn that the changes need to
182-
be cleaned up.
183-
(merge 1686519a mm/rebase-i-exec-edit later to maint).
184-
185144
* "gitweb" used to produce a non-working link while showing the contents
186145
of a blob, when JavaScript actions are enabled.
187146
(merge 2b07ff3ff ps/gitweb-js-with-lineno later to maint).

0 commit comments

Comments
 (0)