Documentation / RelNotes / 1.5.0.3.txton commit First batch after 2.20.1 (ecbdaf0)
   1GIT v1.5.0.3 Release Notes
   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
  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
  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
  45  - 'git http-push' had a few buffer overruns.
  46
  47  - Build dependency fixes to rebuild fetch.o when other headers
  48    change.
  49
  50* Documentation updates
  51
  52  - user-manual updates.
  53
  54  - Options to 'git remote add' were described insufficiently.
  55
  56  - Configuration format.suffix was not documented.
  57
  58  - Other formatting and spelling fixes.