Merge branch 'jk/prompt-fallback-to-tty' into next
[git/dscho.git] / Documentation / RelNotes / 1.7.10.txt
blobe1d70bd27f5a905e8fa02f17d8a682b286491951
1 Git v1.7.10 Release Notes
2 =========================
4 Updates since v1.7.9
5 --------------------
7 UI, Workflows & Features
9  * Improved handling of views, labels and branches in git-p4 (in contrib).
11  * "git am" learned to pass "-b" option to underlying "git mailinfo", so
12    that bracketed string other than "PATCH" at the beginning can be kept.
14  * "git clone" learned "--single-branch" option to limit cloning to a
15    single branch (surprise!).
17  * "git clone" learned to detach the HEAD in the resulting repository
18    when the source repository's HEAD does not point to a branch.
20  * When showing a patch while ignoring whitespace changes, the context
21    lines are taken from the postimage, in order to make it easier to
22    view the output.
24  * "git merge" in an interactive session learned to spawn the editor
25    by default to let the user edit the auto-generated merge message,
26    to encourage people to explain their merges better. Legacy scripts
27    can export MERGE_AUTOEDIT=no to retain the historical behaviour.
29 Performance
31  * During "git upload-pack" in respose to "git fetch", unnecessary calls
32    to parse_object() have been eliminated, to help performance in
33    repositories with excessive number of refs.
35 Internal Implementation
37  * Recursive call chains in "git index-pack" to deal with long delta
38    chains have been flattened, to reduce the stack footprint.
40  * Use of add_extra_ref() API is slowly getting removed, to make it
41    possible to cleanly restructure the overall refs API.
43  * The test suite supports the new "test_pause" helper function.
45  * t/Makefile is adjusted to prevent newer versions of GNU make from
46    running tests in seemingly random order.
48 Also contains minor documentation updates and code clean-ups.
51 Fixes since v1.7.9
52 ------------------
54 Unless otherwise noted, all the fixes since v1.7.9 in the maintenance
55 releases are contained in this release (see release notes to them for
56 details).
58  * When "git push" fails to update any refs, the client side did not
59    report an error correctly to the end user.
60    (merge 5238cbf sp/smart-http-failure-to-push later to maint).
62  * "git push -q" was not sufficiently quiet.
63    (merge d336572 cb/push-quiet later to maint).
65  * "git log --first-parent $pathspec" did not stay on the first parent
66    chain and veered into side branch from which the whole change to the
67    specified paths came.
68    (merge 36ed191 jc/maint-log-first-parent-pathspec later to maint).
70  * Subprocesses spawned from various git programs were often left running
71    to completion even when the top-level process was killed.
72    (merge 10c6cdd cb/maint-kill-subprocess-upon-signal later to maint).
74  * "git mergetool" now gives an empty file as the common base version
75    to the backend when dealing with the "both sides added, differently"
76    case.
77    (merge ec245ba da/maint-mergetool-twoway later to maint).
79  * "git submodule add $path" forgot to recompute the name to be stored
80     in .gitmodules when the submodule at $path was once added to the
81     superproject and already initialized.
82    (merge 1017c1a jl/submodule-re-add later to maint).
84  * Using "git grep -l/-L" together with options -W or --break may not
85    make much sense as the output is to only count the number of hits
86    and there is no place for file breaks, but the latter options made
87    "-l/-L" to miscount the hits.
88    (merge 50dd0f2 tr/grep-l-with-decoration later to maint).
90 ---
91 exec >/var/tmp/1
92 O=v1.7.9-110-g873ce7c
93 echo O=$(git describe)
94 git log --first-parent --oneline ^maint $O..
95 echo
96 git shortlog --no-merges ^maint $O..