Junio C Hamano | bd07326 | 2007-02-14 11:01:41 -0800 | [diff] [blame] | 1 | GIT v1.5.0.1 Release Notes |
| 2 | ========================== |
| 3 | |
| 4 | Fixes since v1.5.0 |
| 5 | ------------------ |
| 6 | |
| 7 | * Documentation updates |
| 8 | |
| 9 | - Clarifications and corrections to 1.5.0 release notes. |
Junio C Hamano | 21b4875 | 2007-02-17 15:47:46 -0800 | [diff] [blame] | 10 | |
Junio C Hamano | bd07326 | 2007-02-14 11:01:41 -0800 | [diff] [blame] | 11 | - The main documentation did not link to git-remote documentation. |
| 12 | |
Junio C Hamano | 21b4875 | 2007-02-17 15:47:46 -0800 | [diff] [blame] | 13 | - Clarified introductory text of git-rebase documentation. |
| 14 | |
| 15 | - Converted remaining mentions of update-index on Porcelain |
| 16 | documents to git-add/git-rm. |
| 17 | |
Junio C Hamano | 4bc94d2 | 2007-02-18 16:18:43 -0800 | [diff] [blame] | 18 | - Some i18n.* configuration variables were incorrectly |
| 19 | described as core.*; fixed. |
| 20 | |
Junio C Hamano | bd07326 | 2007-02-14 11:01:41 -0800 | [diff] [blame] | 21 | * Bugfixes |
| 22 | |
Junio C Hamano | 4bc94d2 | 2007-02-18 16:18:43 -0800 | [diff] [blame] | 23 | - git-add and git-update-index on a filesystem on which |
| 24 | executable bits are unreliable incorrectly reused st_mode |
| 25 | bits even when the path changed between symlink and regular |
| 26 | file. |
| 27 | |
Junio C Hamano | bd07326 | 2007-02-14 11:01:41 -0800 | [diff] [blame] | 28 | - git-daemon marks the listening sockets with FD_CLOEXEC so |
| 29 | that it won't be leaked into the children. |
| 30 | |
Junio C Hamano | 21b4875 | 2007-02-17 15:47:46 -0800 | [diff] [blame] | 31 | - segfault from git-blame when the mandatory pathname |
| 32 | parameter was missing was fixed; usage() message is given |
| 33 | instead. |
| 34 | |
Junio C Hamano | 4bc94d2 | 2007-02-18 16:18:43 -0800 | [diff] [blame] | 35 | - git-rev-list did not read $GIT_DIR/config file, which means |
| 36 | that did not honor i18n.logoutputencoding correctly. |
| 37 | |
Junio C Hamano | 21b4875 | 2007-02-17 15:47:46 -0800 | [diff] [blame] | 38 | * Tweaks |
| 39 | |
| 40 | - sliding mmap() inefficiently mmaped the same region of a |
| 41 | packfile with an access pattern that used objects in the |
| 42 | reverse order. This has been made more efficient. |