describe: --match=<pattern> must limit the refs even when used with --all
[git/jnareb-git.git] / Documentation / RelNotes / 1.8.1.5.txt
blob30d30a1cf926e8c1b9b2c9de9d5365cc8b19671c
1 Git 1.8.1.5 Release Notes
2 =========================
4 Fixes since v1.8.1.4
5 --------------------
7  * Given a string with a multi-byte character that begins with '-' on
8    the command line where an option is expected, the option parser
9    used just one byte of the unknown letter when reporting an error.
11  * "git apply --summary" has been taught to make sure the similarity
12    value shown in its output is sensible, even when the input had a
13    bogus value.
15  * "git clean" showed what it was going to do, but sometimes ended
16    up finding that it was not allowed to do so, which resulted in a
17    confusing output (e.g. after saying that it will remove an
18    untracked directory, it found an embedded git repository there
19    which it is not allowed to remove).  It now performs the actions
20    and then reports the outcome more faithfully.
22  * "git clone" used to allow --bare and --separate-git-dir=$there
23    options at the same time, which was nonsensical.
25  * "git cvsimport" mishandled timestamps at DST boundary.
27  * We used to have an arbitrary 32 limit for combined diff input,
28    resulting in incorrect number of leading colons shown when showing
29    the "--raw --cc" output.
31  * The smart HTTP clients forgot to verify the content-type that comes
32    back from the server side to make sure that the request is being
33    handled properly.
35  * "git help remote-helpers" failed to find the documentation.
37  * "gitweb" pages served over HTTPS, when configured to show picon or
38    gravatar, referred to these external resources to be fetched via
39    HTTP, resulting in mixed contents warning in browsers.
41 Also contains various documentation fixes.