Junio C Hamano | 936b705 | 2008-12-29 01:17:34 -0800 | [diff] [blame] | 1 | GIT v1.6.1.1 Release Notes |
| 2 | ========================== |
| 3 | |
| 4 | Fixes since v1.6.1 |
| 5 | ------------------ |
| 6 | |
Junio C Hamano | 5c41531 | 2009-01-25 12:41:09 -0800 | [diff] [blame] | 7 | * "git add frotz/nitfol" when "frotz" is a submodule should have errored |
| 8 | out, but it didn't. |
| 9 | |
Junio C Hamano | eb475bf | 2009-01-14 22:43:04 -0800 | [diff] [blame] | 10 | * "git apply" took file modes from the patch text and updated the mode |
| 11 | bits of the target tree even when the patch was not about mode changes. |
| 12 | |
Junio C Hamano | 5c41531 | 2009-01-25 12:41:09 -0800 | [diff] [blame] | 13 | * "git bisect view" on Cygwin did not launch gitk |
| 14 | |
Junio C Hamano | eb475bf | 2009-01-14 22:43:04 -0800 | [diff] [blame] | 15 | * "git checkout $tree" did not trigger an error. |
| 16 | |
Junio C Hamano | 9d3043c | 2009-01-17 23:04:35 -0800 | [diff] [blame] | 17 | * "git commit" tried to remove COMMIT_EDITMSG from the work tree by mistake. |
| 18 | |
Junio C Hamano | 936b705 | 2008-12-29 01:17:34 -0800 | [diff] [blame] | 19 | * "git describe --all" complained when a commit is described with a tag, |
| 20 | which was nonsense. |
| 21 | |
Junio C Hamano | 5c41531 | 2009-01-25 12:41:09 -0800 | [diff] [blame] | 22 | * "git diff --no-index --" did not trigger no-index (aka "use git-diff as |
| 23 | a replacement of diff on untracked files") behaviour. |
| 24 | |
| 25 | * "git format-patch -1 HEAD" on a root commit failed to produce patch |
| 26 | text. |
| 27 | |
Junio C Hamano | 9d3043c | 2009-01-17 23:04:35 -0800 | [diff] [blame] | 28 | * "git fsck branch" did not work as advertised; instead it behaved the same |
| 29 | way as "git fsck". |
| 30 | |
Junio C Hamano | 936b705 | 2008-12-29 01:17:34 -0800 | [diff] [blame] | 31 | * "git log --pretty=format:%s" did not handle a multi-line subject the |
| 32 | same way as built-in log listers (i.e. shortlog, --pretty=oneline, etc.) |
| 33 | |
| 34 | * "git daemon", and "git merge-file" are more careful when freopen fails |
| 35 | and barf, instead of going on and writing to unopened filehandle. |
| 36 | |
Junio C Hamano | eb475bf | 2009-01-14 22:43:04 -0800 | [diff] [blame] | 37 | * "git http-push" did not like some RFC 4918 compliant DAV server |
| 38 | responses. |
| 39 | |
| 40 | * "git merge -s recursive" mistakenly overwritten an untracked file in the |
| 41 | work tree upon delete/modify conflict. |
| 42 | |
| 43 | * "git merge -s recursive" didn't leave the index unmerged for entries with |
Mike Ralphson | c0bc2ee | 2009-03-03 19:29:20 +0000 | [diff] [blame] | 44 | rename/delete conflicts. |
Junio C Hamano | eb475bf | 2009-01-14 22:43:04 -0800 | [diff] [blame] | 45 | |
| 46 | * "git merge -s recursive" clobbered untracked files in the work tree. |
| 47 | |
Mike Ralphson | c0bc2ee | 2009-03-03 19:29:20 +0000 | [diff] [blame] | 48 | * "git mv -k" with more than one erroneous paths misbehaved. |
Junio C Hamano | eb475bf | 2009-01-14 22:43:04 -0800 | [diff] [blame] | 49 | |
Junio C Hamano | 5c41531 | 2009-01-25 12:41:09 -0800 | [diff] [blame] | 50 | * "git read-tree -m -u" hence branch switching incorrectly lost a |
| 51 | subdirectory in rare cases. |
| 52 | |
Junio C Hamano | eb475bf | 2009-01-14 22:43:04 -0800 | [diff] [blame] | 53 | * "git rebase -i" issued an unnecessary error message upon a user error of |
| 54 | marking the first commit to be "squash"ed. |
| 55 | |
Junio C Hamano | 5c41531 | 2009-01-25 12:41:09 -0800 | [diff] [blame] | 56 | * "git shortlog" did not format a commit message with multi-line |
| 57 | subject correctly. |
Junio C Hamano | 936b705 | 2008-12-29 01:17:34 -0800 | [diff] [blame] | 58 | |
Junio C Hamano | 5c41531 | 2009-01-25 12:41:09 -0800 | [diff] [blame] | 59 | Many documentation updates. |