]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/RelNotes-1.5.0.3.txt
Merge branch 'jk/clone-b'
[thirdparty/git.git] / Documentation / RelNotes-1.5.0.3.txt
CommitLineData
7193db36 1GIT v1.5.0.3 Release Notes
a1367d12
JH
2==========================
3
4Fixes since v1.5.0.2
5--------------------
6
7* Bugfixes
8
9 - 'git.el' honors the commit coding system from the configuration.
10
11 - 'blameview' in contrib/ correctly digs deeper when a line is
12 clicked.
13
14 - 'http-push' correctly makes sure the remote side has leading
15 path. Earlier it started in the middle of the path, and
16 incorrectly.
17
7193db36
JH
18 - 'git-merge' did not exit with non-zero status when the
19 working tree was dirty and cannot fast forward. It does
20 now.
21
a1367d12
JH
22 - 'cvsexportcommit' does not lose yet-to-be-used message file.
23
24 - int-vs-size_t typefix when running combined diff on files
25 over 2GB long.
26
27 - 'git apply --whitespace=strip' should not touch unmodified
28 lines.
29
30 - 'git-mailinfo' choke when a logical header line was too long.
31
32 - 'git show A..B' did not error out. Negative ref ("not A" in
33 this example) does not make sense for the purpose of the
34 command, so now it errors out.
35
36 - 'git fmt-merge-msg --file' without file parameter did not
37 correctly error out.
38
39 - 'git archimport' barfed upon encountering a commit without
40 summary.
41
42 - 'git index-pack' did not protect itself from getting a short
43 read out of pread(2).
44
7193db36
JH
45 - 'git http-push' had a few buffer overruns.
46
47 - Build dependency fixes to rebuild fetch.o when other headers
48 change.
49
a1367d12
JH
50* Documentation updates
51
7193db36 52 - user-manual updates.
a1367d12 53
7193db36 54 - Options to 'git remote add' were described insufficiently.
a1367d12 55
7193db36 56 - Configuration format.suffix was not documented.
a1367d12 57
7193db36 58 - Other formatting and spelling fixes.