1Git v1.7.10 Release Notes2=========================34Updates since v1.7.95--------------------67UI, Workflows & Features89* Teams for localizing the messages from the Porcelain layer of10commands are starting to form, thanks to Jiang Xin who volunteered11to be the localization coordinator. An initial set of translated12messages for simplified chinese is available.1314* The configuration mechanism learned an "include" facility; an15assignment to the include.path pseudo-variable causes the named16file to be included in-place when Git looks up configuration17variables.1819* A content filter (clean/smudge) used to be just a way to make the20recorded contents "more useful", and allowed to fail; a filter can21new 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 omitting25"no-" from its name, e.g. "git commit --verify".2627* "git am" learned to pass "-b" option to underlying "git mailinfo", so28that bracketed string other than "PATCH" at the beginning can be kept.2930* "git clone" learned "--single-branch" option to limit cloning to a31single branch (surprise!).3233* "git clone" learned to detach the HEAD in the resulting repository34when the source repository's HEAD does not point to a branch.3536* When showing a patch while ignoring whitespace changes, the context37lines are taken from the postimage, in order to make it easier to38view the output.3940* "diff-highlight" filter (in contrib/) was updated to produce more41aesthetically pleasing output.4243* "fsck" learned "--no-dangling" option to omit dangling object44information.4546* "git merge" in an interactive session learned to spawn the editor47by default to let the user edit the auto-generated merge message,48to encourage people to explain their merges better. Legacy scripts49can export GIT_MERGE_AUTOEDIT=no to retain the historical behavior.50Both "git merge" and "git pull" can be given --no-edit from the51command 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 its56output to those that point at the given object.5758* "gitweb" allows intermediate entries in the directory hierarchy59that leads to a projects to be clicked, which in turn shows the60list of projects inside that directory.6162* "gitweb" learned to read various pieces of information for the63repositories lazily, instead of reading everything that could be64needed (including the ones that are not necessary for a specific65task).6667Foreign Interface6869* Improved handling of views, labels and branches in git-p4 (in contrib).7071* "git-p4" (in contrib) suffered from unnecessary merge conflicts when72p4 expanded the embedded $RCS$-like keywords; it can be now told to73unexpand them.7475* Some "git-svn" updates.7677* "vcs-svn"/"svn-fe" learned to read dumps with svn-deltas and78support incremental imports.7980Performance8182* During "git upload-pack" in response to "git fetch", unnecessary calls83to parse_object() have been eliminated, to help performance in84repositories with excessive number of refs.8586Internal Implementation (please report possible regressions)8788* Recursive call chains in "git index-pack" to deal with long delta89chains have been flattened, to reduce the stack footprint.9091* Use of add_extra_ref() API is now gone, to make it possible to92cleanly restructure the overall refs API.9394* The command line parser of "git pack-objects" now uses parse-options95API.9697* The test suite supports the new "test_pause" helper function.9899* Parallel to the test suite, there is a beginning of performance100benchmarking framework.101102* t/Makefile is adjusted to prevent newer versions of GNU make from103running tests in seemingly random order.104105Also contains minor documentation updates and code clean-ups.106107108Fixes since v1.7.9109------------------110111Unless otherwise noted, all the fixes since v1.7.9 in the maintenance112releases are contained in this release (see release notes to them for113details).114115* "git branch --with $that" assumed incorrectly that the user will never116ask 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 made120"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 verification124it 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 needs128smudge/clean filters without running them, instead of punting and129delegating to the codepath to run filters after slurping everything130to core.131(merge 4f22b10 jk/maint-avoid-streaming-filtered-contents later to maint).132133* When the filter driver exits before reading the content before the134main git process writes the contents to be filtered to the pipe to135it, the latter could be killed with SIGPIPE instead of ignoring136such 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 the140main git process to signal the end of commands, the latter could be141killed with SIGPIPE. Instead we should ignore such event as a142non-error.143(merge c34fe63 sp/smart-http-failure-to-push later to maint).144145* "git bundle create" produced a corrupt bundle file upon seeing146commits 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 is150accessed in a repository whose HEAD does not point at a valid151branch.152153---154exec >/var/tmp/1155O=v1.7.9.2-358-g64d1544156echo O=$(git describe)157git log --first-parent --oneline ^maint $O..158echo159git shortlog --no-merges ^maint $O..