1Git v1.7.10 Release Notes
2=========================
34
Updates since v1.7.9
5--------------------
67
UI, Workflows & Features
89
* Teams for localizing the messages from the Porcelain layer of
10commands are starting to form, thanks to Jiang Xin who volunteered
11to be the localization coordinator. An initial set of translated
12messages for simplified chinese is available.
1314
* The configuration mechanism learned an "include" facility; an
15assignment to the include.path pseudo-variable causes the named
16file to be included in-place when Git looks up configuration
17variables.
1819
* A content filter (clean/smudge) used to be just a way to make the
20recorded contents "more useful", and allowed to fail; a filter can
21new optionally be marked as "required".
2223
* Options whose names begin with "--no-" (e.g. the "--no-verify"
24option of the "git commit" command) can be negated by omitting
25"no-" from its name, e.g. "git commit --verify".
2627
* "git am" learned to pass "-b" option to underlying "git mailinfo", so
28that bracketed string other than "PATCH" at the beginning can be kept.
2930
* "git clone" learned "--single-branch" option to limit cloning to a
31single branch (surprise!).
3233
* "git clone" learned to detach the HEAD in the resulting repository
34when the source repository's HEAD does not point to a branch.
3536
* When showing a patch while ignoring whitespace changes, the context
37lines are taken from the postimage, in order to make it easier to
38view the output.
3940
* "diff-highlight" filter (in contrib/) was updated to produce more
41aesthetically pleasing output.
4243
* "fsck" learned "--no-dangling" option to omit dangling object
44information.
4546
* "git merge" in an interactive session learned to spawn the editor
47by default to let the user edit the auto-generated merge message,
48to encourage people to explain their merges better. Legacy scripts
49can export GIT_MERGE_AUTOEDIT=no to retain the historical behavior.
50Both "git merge" and "git pull" can be given --no-edit from the
51command line to accept the auto-generated merge message.
5253
* "git push" learned the "--prune" option, similar to "git fetch".
5455
* "git tag --list" can be given "--points-at <object>" to limit its
56output to those that point at the given object.
5758
* "gitweb" allows intermediate entries in the directory hierarchy
59that leads to a projects to be clicked, which in turn shows the
60list of projects inside that directory.
6162
* "gitweb" learned to read various pieces of information for the
63repositories lazily, instead of reading everything that could be
64needed (including the ones that are not necessary for a specific
65task).
6667
Foreign Interface
6869
* Improved handling of views, labels and branches in git-p4 (in contrib).
7071
* "git-p4" (in contrib) suffered from unnecessary merge conflicts when
72p4 expanded the embedded $RCS$-like keywords; it can be now told to
73unexpand them.
7475
* Some "git-svn" updates.
7677
* "vcs-svn"/"svn-fe" learned to read dumps with svn-deltas and
78support incremental imports.
7980
Performance
8182
* During "git upload-pack" in response to "git fetch", unnecessary calls
83to parse_object() have been eliminated, to help performance in
84repositories with excessive number of refs.
8586
Internal Implementation (please report possible regressions)
8788
* Recursive call chains in "git index-pack" to deal with long delta
89chains have been flattened, to reduce the stack footprint.
9091
* Use of add_extra_ref() API is now gone, to make it possible to
92cleanly restructure the overall refs API.
9394
* The command line parser of "git pack-objects" now uses parse-options
95API.
9697
* The test suite supports the new "test_pause" helper function.
9899
* Parallel to the test suite, there is a beginning of performance
100benchmarking framework.
101102
* t/Makefile is adjusted to prevent newer versions of GNU make from
103running tests in seemingly random order.
104105
Also contains minor documentation updates and code clean-ups.
106107
108
Fixes since v1.7.9
109------------------
110111
Unless otherwise noted, all the fixes since v1.7.9 in the maintenance
112releases are contained in this release (see release notes to them for
113details).
114115
* "git branch --with $that" assumed incorrectly that the user will never
116ask the question with nonsense value in $that.
117(merge 6c41e97 cn/maint-branch-with-bad later to maint).
118119
* An invalid regular expression pattern given by an end user made
120"gitweb" to return garbled response.
121(merge 36612e4 jn/maint-gitweb-invalid-regexp later to maint).
122123
* "git rev-list --verify-objects -q" omitted the extra verification
124it needs to do over "git rev-list --objects -q" by mistake.
125(merge 9899372 nd/maint-verify-objects later to maint).
126127
* The bulk check-in codepath streamed contents that needs
128smudge/clean filters without running them, instead of punting and
129delegating to the codepath to run filters after slurping everything
130to core.
131(merge 4f22b10 jk/maint-avoid-streaming-filtered-contents later to maint).
132133
* When the filter driver exits before reading the content before the
134main git process writes the contents to be filtered to the pipe to
135it, the latter could be killed with SIGPIPE instead of ignoring
136such an event as an error.
137(merge 6424c2a jb/filter-ignore-sigpipe later to maint).
138139
* When a remote helper exits before reading the blank line from the
140main git process to signal the end of commands, the latter could be
141killed with SIGPIPE. Instead we should ignore such event as a
142non-error.
143(merge c34fe63 sp/smart-http-failure-to-push later to maint).
144145
* "git bundle create" produced a corrupt bundle file upon seeing
146commits with excessively long subject line.
147(merge 8a557bb tr/maint-bundle-long-subject later to maint).
148149
* "gitweb" used to drop warnings in the log file when "heads" view is
150accessed in a repository whose HEAD does not point at a valid
151branch.
152153
---
154exec >/var/tmp/1
155O=v1.7.9.2-358-g64d1544
156echo O=$(git describe)
157git log --first-parent --oneline ^maint $O..
158echo
159git shortlog --no-merges ^maint $O..