Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit b6555d7

Browse files
committed
Git 1.7.10.2
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8daff71 commit b6555d7

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

Documentation/RelNotes/1.7.10.2.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ Fixes since v1.7.10.1
1414
* HTTP transport that requires authentication did not work correctly when
1515
multiple connections are used simultaneously.
1616

17+
* Minor memory leak during unpack_trees (hence "merge" and "checkout"
18+
to check out another branch) has been plugged.
19+
1720
* In the older days, the header "Conflicts:" in "cherry-pick" and "merge"
1821
was separated by a blank line from the list of paths that follow for
1922
readability, but when "merge" was rewritten in C, we lost it by
@@ -52,13 +55,24 @@ Fixes since v1.7.10.1
5255
* "git push" over smart-http lost progress output a few releases ago;
5356
this release resurrects it.
5457

58+
* The error and advice messages given by "git push" when it fails due
59+
to non-ff were not very helpful to new users; it has been broken
60+
into three cases, and each is given a separate advice message.
61+
5562
* The insn sheet given by "rebase -i" did not make it clear that the
5663
insn lines can be re-ordered to affect the order of the commits in
5764
the resulting history.
5865

66+
* "git repack" used to write out unreachable objects as loose objects
67+
when repacking, even if such loose objects will immediately pruned
68+
due to its age.
69+
5970
* A contrib script "rerere-train" did not work out of the box unless
6071
user futzed with her $PATH.
6172

73+
* "git rev-parse --show-prefix" used to emit nothing when run at the
74+
top-level of the working tree, but now it gives a blank line.
75+
6276
* The i18n of error message "git stash save" was not properly done.
6377

6478
* "git submodule" used a sed script that some platforms mishandled.

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ unreleased) version of git, that is available from 'master'
4444
branch of the `git.git` repository.
4545
Documentation for older releases are available here:
4646

47-
* link:v1.7.10.1/git.html[documentation for release 1.7.10.1]
47+
* link:v1.7.10.2/git.html[documentation for release 1.7.10.2]
4848

4949
* release notes for
50+
link:RelNotes/1.7.10.2.txt[1.7.10.2],
5051
link:RelNotes/1.7.10.1.txt[1.7.10.1],
5152
link:RelNotes/1.7.10.txt[1.7.10].
5253

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.7.10.1
4+
DEF_VER=v1.7.10.2
55

66
LF='
77
'

0 commit comments

Comments
 (0)