Skip to content

Commit bab39ed

Browse files
committed
GIT 1.6.1.4
With a handful of fixes backmerged from 1.6.2.X series Signed-off-by: Junio C Hamano <[email protected]>
1 parent e89c6ea commit bab39ed

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

Documentation/RelNotes-1.6.1.4.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,40 @@ GIT v1.6.1.4 Release Notes
44
Fixes 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+
1641
Also includes minor documentation fixes and updates.
1742

1843
--

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.6.1.3.GIT
4+
DEF_VER=v1.6.1.4
55

66
LF='
77
'

0 commit comments

Comments
 (0)