Merge branch 'master' of git://repo.or.cz/alt-git
[git/mingw.git] / Documentation / RelNotes / 1.7.11.txt
blob3870ebb53ff35e4c11f9889f9d16323f80436351
1 Git v1.7.11 Release Notes
2 =========================
4 Updates since v1.7.10
5 ---------------------
7 UI, Workflows & Features
9  * A third-party tool "git subtree" is distributed in contrib/
11  * Even with "-q"uiet option, "checkout" used to report setting up
12    tracking.  Also "branch" learned the "-q"uiet option to squelch
13    informational message.
15  * The smart-http backend used to always override GIT_COMMITTER_*
16    variables with REMOTE_USER and REMOTE_ADDR, but these variables are
17    now preserved when set.
19  * A 'snapshot' request to "gitweb" honors If-Modified-Since: header,
20    based on the commit date.
22 Foreign Interface
25 Performance
28 Internal Implementation (please report possible regressions)
30  * Minor memory leak during unpack_trees (hence "merge" and "checkout"
31    to check out another branch) has been plugged.
33  * More lower-level commands learned to use the streaming API to read
34    from the object store without keeping everything in core.
36  * Because "sh" on the user's PATH may be utterly broken on some
37    systems, run-command API now uses SHELL_PATH, not /bin/sh, when
38    spawning an external command.
40 Also contains minor documentation updates and code clean-ups.
43 Fixes since v1.7.10
44 -------------------
46 Unless otherwise noted, all the fixes since v1.7.10 in the maintenance
47 releases are contained in this release (see release notes to them for
48 details).
50  * "git clean -d -f" (not "-d -f -f") is supposed to protect nested
51    working trees of independent git repositories that exist in the
52    current project working tree from getting removed, but the
53    protection applied only to such working trees that are at the
54    top-level of the current project by mistake.
55    (merge ae2f203 jc/maint-clean-nested-worktree-in-subdir later to maint).
57  * Rename detection logic used to match two empty files as renames
58    during merge-recursive, leading unnatural mismerges.
59    (merge 4f7cb99 jk/diff-no-rename-empty later to maint).
61  * An age-old corner case bug in combine diff (only triggered with -U0
62    and the hunk at the beginning of the file needs to be shown) has
63    been fixed.
64    (merge e5e9b56 rs/combine-diff-zero-context-at-the-beginning later to maint).
66  * When "git commit --template F" errors out because the user did not
67    touch the message, it claimed that it aborts due to "empty
68    message", which was utterly wrong.
69    (merge 1f08c2c jc/commit-unedited-template later to maint).
71  * "git add -p" is not designed to deal with unmerged paths but did
72    not exclude them and tried to apply funny patches only to fail.
73    (merge 4066bd6 jk/add-p-skip-conflicts later to maint).
75  * "git commit --author=$name" did not tell the name that was being
76    recorded in the resulting commit to hooks, even though it does do
77    so when the end user overrode the authorship via the
78    "GIT_AUTHOR_NAME" environment variable.
79    (merge 7dfe8ad jc/commit-hook-authorship later to maint).
81  * The regexp configured with diff.wordregex was incorrectly reused
82    across files.
83    (merge 6440d34 tr/maint-word-diff-regex-sticky later to maint).
85  * Running "notes merge --commit" failed to perform correctly when run
86    from any directory inside $GIT_DIR/.  When "notes merge" stops with
87    conflicts, $GIT_DIR/NOTES_MERGE_WORKTREE is the place a user edits
88    to resolve it.
89    (merge dabba59 jh/notes-merge-in-git-dir-worktree later to maint).