@@ -4,15 +4,40 @@ GIT v1.6.1.4 Release Notes
44Fixes since v1.6.1.3
55--------------------
66
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.
10+
711* "git fast-export" produced wrong output with some parents missing from
812 commits, when the history is clock-skewed.
913
1014* "git fast-import" sometimes failed to read back objects it just wrote
1115 out and aborted, because it failed to flush stale cached data.
1216
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.
23+
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.
27+
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.
31+
1332* "git repack" did not error out when necessary object was missing in the
1433 repository.
1534
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.
40+
1641Also includes minor documentation fixes and updates.
1742
1843--
0 commit comments