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 symbolic-ref" learned the "--short" option to abbreviate the56refname it shows unambiguously.5758* "git tag --list" can be given "--points-at <object>" to limit its59output to those that point at the given object.6061* "gitweb" allows intermediate entries in the directory hierarchy62that leads to a projects to be clicked, which in turn shows the63list of projects inside that directory.6465* "gitweb" learned to read various pieces of information for the66repositories lazily, instead of reading everything that could be67needed (including the ones that are not necessary for a specific68task).6970* Project search in "gitweb" shows the substring that matched in the71project name and description highlighted.7273Foreign Interface7475* Improved handling of views, labels and branches in git-p4 (in contrib).7677* "git-p4" (in contrib) suffered from unnecessary merge conflicts when78p4 expanded the embedded $RCS$-like keywords; it can be now told to79unexpand them.8081* Some "git-svn" updates.8283* "vcs-svn"/"svn-fe" learned to read dumps with svn-deltas and84support incremental imports.8586Performance8788* During "git upload-pack" in response to "git fetch", unnecessary calls89to parse_object() have been eliminated, to help performance in90repositories with excessive number of refs.9192Internal Implementation (please report possible regressions)9394* Recursive call chains in "git index-pack" to deal with long delta95chains have been flattened, to reduce the stack footprint.9697* Use of add_extra_ref() API is now gone, to make it possible to98cleanly restructure the overall refs API.99100* The command line parser of "git pack-objects" now uses parse-options101API.102103* The test suite supports the new "test_pause" helper function.104105* Parallel to the test suite, there is a beginning of performance106benchmarking framework.107108* t/Makefile is adjusted to prevent newer versions of GNU make from109running tests in seemingly random order.110111Also contains minor documentation updates and code clean-ups.112113114Fixes since v1.7.9115------------------116117Unless otherwise noted, all the fixes since v1.7.9 in the maintenance118releases are contained in this release (see release notes to them for119details).120121* The code to synthesize the fake ancestor tree used by 3-way merge122fallback in "git am" was not prepared to read a patch created with123a non-standard -p<num> value.124(merge a61ba26 jc/am-3-nonstandard-popt later to maint).125126* "gitweb" used to drop warnings in the log file when "heads" view is127accessed in a repository whose HEAD does not point at a valid128branch.129130---131exec >/var/tmp/1132O=v1.7.9.2-383-gb8b5290133echo O=$(git describe)134git log --first-parent --oneline ^maint $O..135echo136git shortlog --no-merges ^maint $O..