1GIT v1.6.1.1 Release Notes 2========================== 3 4Fixes since v1.6.1 5------------------ 6 7* "git apply" took file modes from the patch text and updated the mode 8 bits of the target tree even when the patch was not about mode changes. 9 10* "git checkout $tree" did not trigger an error. 11 12* "git commit" tried to remove COMMIT_EDITMSG from the work tree by mistake. 13 14* "git describe --all" complained when a commit is described with a tag, 15 which was nonsense. 16 17* "git fsck branch" did not work as advertised; instead it behaved the same 18 way as "git fsck". 19 20* "git log --pretty=format:%s" did not handle a multi-line subject the 21 same way as built-in log listers (i.e. shortlog, --pretty=oneline, etc.) 22 23* "git daemon", and "git merge-file" are more careful when freopen fails 24 and barf, instead of going on and writing to unopened filehandle. 25 26* "git http-push" did not like some RFC 4918 compliant DAV server 27 responses. 28 29* "git merge -s recursive" mistakenly overwritten an untracked file in the 30 work tree upon delete/modify conflict. 31 32* "git merge -s recursive" didn't leave the index unmerged for entries with 33 rename/delete conflictd. 34 35* "git merge -s recursive" clobbered untracked files in the work tree. 36 37* "git mv -k" with more than one errorneous paths misbehaved. 38 39* "git rebase -i" issued an unnecessary error message upon a user error of 40 marking the first commit to be "squash"ed. 41 42Other documentation updates. 43 44--- 45exec >/var/tmp/1 46O=v1.6.1-60-g78f111e 47echo O=$(git describe maint) 48git shortlog --no-merges $O..maint 49