Junio C Hamano | 511da22 | 2010-03-02 23:11:36 -0800 | [diff] [blame] | 1 | Git v1.7.0.2 Release Notes |
| 2 | ========================== |
| 3 | |
| 4 | Fixes since v1.7.0.1 |
| 5 | -------------------- |
| 6 | |
Junio C Hamano | 3609ad8 | 2010-03-04 22:39:38 -0800 | [diff] [blame] | 7 | * GIT_PAGER was not honored consistently by some scripted Porcelains, most |
| 8 | notably "git am". |
| 9 | |
| 10 | * updating working tree files after telling git to add them to the |
| 11 | index and while it is still working created garbage object files in |
| 12 | the repository without diagnosing it as an error. |
| 13 | |
| 14 | * "git bisect -- pathspec..." did not diagnose an error condition properly when |
| 15 | the simplification with given pathspec made the history empty. |
| 16 | |
| 17 | * "git rev-list --cherry-pick A...B" now has an obvious optimization when the |
| 18 | histories haven't diverged (i.e. when one end is an ancestor of the other). |
| 19 | |
| 20 | * "git diff --quiet -w" did not work as expected. |
| 21 | |
Junio C Hamano | 511da22 | 2010-03-02 23:11:36 -0800 | [diff] [blame] | 22 | * "git fast-import" didn't work with a large input, as it lacked support |
| 23 | for producing the pack index in v2 format. |
| 24 | |
| 25 | * "git imap-send" didn't use CRLF line endings over the imap protocol |
| 26 | when storing its payload to the draft box, violating RFC 3501. |
| 27 | |
Junio C Hamano | 3609ad8 | 2010-03-04 22:39:38 -0800 | [diff] [blame] | 28 | * "git log --format='%w(x,y,z)%b'" and friends that rewrap message |
| 29 | has been optimized for utf-8 payload. |
| 30 | |
Junio C Hamano | 511da22 | 2010-03-02 23:11:36 -0800 | [diff] [blame] | 31 | * Error messages generated on the receiving end did not come back to "git |
| 32 | push". |
| 33 | |
Junio C Hamano | 3609ad8 | 2010-03-04 22:39:38 -0800 | [diff] [blame] | 34 | * "git status" in 1.7.0 lacked the optimization we used to have in 1.6.X series |
| 35 | to speed up scanning of large working tree. |
| 36 | |
Elijah Newren | 031fd4b | 2019-11-05 17:07:20 +0000 | [diff] [blame] | 37 | * "gitweb" did not diagnose parsing errors properly while reading its configuration |
Junio C Hamano | 3609ad8 | 2010-03-04 22:39:38 -0800 | [diff] [blame] | 38 | file. |
| 39 | |
Junio C Hamano | 511da22 | 2010-03-02 23:11:36 -0800 | [diff] [blame] | 40 | And other minor fixes and documentation updates. |