1GIT v1.5.3 Release Notes (draft)
2========================
34
Updates since v1.5.2
5--------------------
67
* An initial interation of Porcelain level superproject support
8started to take shape.
910
* Thee are a handful pack-objects changes to help you cope better with
11repositories with pathologically large blobs in them.
1213
* New commands and options.
1415
- "git-submodule" command helps you manage the projects from
16the superproject that contain them.
1718
- In addition to core.compression configuration option,
19core.loosecompression and pack.compression options can
20independently tweak zlib compression levels used for loose
21and packed objects.
2223
- "git-ls-tree -l" shows size of blobs pointed at by the
24tree entries, similar to "/bin/ls -l".
2526
- "git-rev-list" learned --regexp-ignore-case and
27--extended-regexp options to tweak its matching logic used
28for --grep fitering.
2930
- "git-describe --contains" is a handier way to call more
31obscure command "git-name-rev --tags".
3233
- "git gc --aggressive" tells the command to spend more cycles
34to optimize the repository harder.
3536
- "git repack" can be told to split resulting packs to avoid
37exceeding limit specified with "--max-pack-size".
3839
* Updated behavior of existing commands.
4041
- "git push" pretends that you immediately fetched back from
42the remote by updating corresponding remote tracking
43branches if you have any.
4445
- The diffstat given after a merge (or a pull) honors the
46color.diff configuration.
4748
- "git-apply --whitespace=strip" removes blank lines added at
49the end of the file.
5051
- fetch over git native protocols with -v shows connection
52status, and the IP address of the other end, to help
53diagnosing problems.
5455
- core.legacyheaders is no more, although we still can read
56objects created in a new loose object format.
5758
- "git-mailsplit" (hence "git-am") can read from Maildir
59formatted mailboxes.
6061
- "git cvsserver" does not barf upon seeing "cvs login"
62request.
6364
- "pack-objects" honors "delta" attribute set in
65.gitattributes. It does not attempt to deltify blobs that
66come from paths with delta attribute set to false.
6768
- new-workdir script (in contrib) can now be used with a bare
69repository.
7071
72
* Builds
7374
-
7576
* Performance Tweaks
7778
- git-pack-objects avoids re-deltification cost by caching
79small enough delta results it creates while looking for the
80best delta candidates.
8182
- diff-delta code that is used for packing has been improved
83to work better on big files.
8485
- when there are more than one pack files in the repository,
86the runtime used to try finding an object always from the
87newest packfile; it now tries the same packfile as we found
88the object requested the last time, which exploits the
89locality of references.
9091
Fixes since v1.5.2
92------------------
9394
All of the fixes in v1.5.2 maintenance series are included in
95this release, unless otherwise noted.
9697
* Bugfixes
9899
- .... This has not
100been backported to 1.5.2.x series, as it is rather an
101intrusive change.
102103
104
--
105exec >/var/tmp/1
106O=v1.5.2-45-ged82edc
107O=v1.5.2-172-g1a8b769
108echo O=`git describe refs/heads/master`
109git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint