pack-objects: turn off bitmaps when we split packs
[git.git] / Documentation / RelNotes / 1.6.1.4.txt
blobccbad794c0345da05e3217ad189d95e4def762cb
1 GIT v1.6.1.4 Release Notes
2 ==========================
4 Fixes since v1.6.1.3
5 --------------------
7 * .gitignore learned to handle backslash as a quoting mechanism for
8   comment introduction character "#".
9   This fix was first merged to 1.6.2.1.
11 * "git fast-export" produced wrong output with some parents missing from
12   commits, when the history is clock-skewed.
14 * "git fast-import" sometimes failed to read back objects it just wrote
15   out and aborted, because it failed to flush stale cached data.
17 * "git-ls-tree" and "git-diff-tree" used a pathspec correctly when
18   deciding to descend into a subdirectory but they did not match the
19   individual paths correctly.  This caused pathspecs "abc/d ab" to match
20   "abc/0" ("abc/d" made them decide to descend into the directory "abc/",
21   and then "ab" incorrectly matched "abc/0" when it shouldn't).
22   This fix was first merged to 1.6.2.3.
24 * import-zips script (in contrib) did not compute the common directory
25   prefix correctly.
26   This fix was first merged to 1.6.2.2.
28 * "git init" segfaulted when given an overlong template location via
29   the --template= option.
30   This fix was first merged to 1.6.2.4.
32 * "git repack" did not error out when necessary object was missing in the
33   repository.
35 * git-repack (invoked from git-gc) did not work as nicely as it should in
36   a repository that borrows objects from neighbours via alternates
37   mechanism especially when some packs are marked with the ".keep" flag
38   to prevent them from being repacked.
39   This fix was first merged to 1.6.2.3.
41 Also includes minor documentation fixes and updates.