@@ -4,10 +4,13 @@ Git v1.7.2 Release Notes (draft)
44Updates since v1.7.1
55--------------------
66
7- * core.eol configuration and eol attribute are the new way to control
8- the end of line conventions for files in the working tree;
9- core.autocrlf overrides it, keeping the traditional behaviour by
10- default.
7+ * core.eol configuration and text/eol attributes are the new way to control
8+ the end of line conventions for files in the working tree.
9+
10+ * core.autocrlf has been made safer - it will now only handle line
11+ endings for new files and files that are LF-only in the
12+ repository. To normalize content that has been checked in with
13+ CRLF, use the new eol/text attributes.
1114
1215 * The whitespace rules used in "git apply --whitespace" and "git diff"
1316 gained a new member in the family (tab-in-indent) to help projects with
@@ -45,8 +48,12 @@ Updates since v1.7.1
4548 commit.
4649
4750 * "git cherry-pick" learned to pick a range of commits
48- (e.g. "cherry-pick A..B" and "cherry-pick --stdin"); this does not
49- have nicer sequencing control "rebase [-i]" has, though.
51+ (e.g. "cherry-pick A..B" and "cherry-pick --stdin"), so did "git
52+ revert"; these do not support the nicer sequencing control "rebase
53+ [-i]" has, though.
54+
55+ * "git cherry-pick" and "git revert" learned --strategy option to specify
56+ the merge strategy to be used when performing three-way merges.
5057
5158 * "git cvsserver" can be told to use pserver; its password file can be
5259 stored outside the repository.
@@ -74,7 +81,7 @@ Updates since v1.7.1
7481 * Various options to "git grep" (e.g. --count, --name-only) work better
7582 with binary files.
7683
77- * "git grep" learned "-Ovi" to open the files with hits in yoru editor.
84+ * "git grep" learned "-Ovi" to open the files with hits in your editor.
7885
7986 * "git help -w" learned "chrome" and "chromium" browsers.
8087
@@ -96,8 +103,6 @@ Updates since v1.7.1
96103
97104 * "git remote" learned "set-branches" subcommand.
98105
99- * "git revert" learned --strategy option to specify the merge strategy.
100-
101106 * "git rev-list A..B" learned --ancestry-path option to further limit
102107 the result to the commits that are on the ancestry chain between A and
103108 B (i.e. commits that are not descendants of A are excluded).
@@ -147,9 +152,6 @@ release, unless otherwise noted.
147152 * "git diff" could show ambiguous abbreviation of blob object names on
148153 its "index" line (3e5a188).
149154
150- * "git rebase" did not faithfully reproduce a malformed author ident, that
151- is often seen in a repository converted from foreign SCMs (43c23251).
152-
153155 * "git reset --hard" started from a wrong directory and a working tree in
154156 a nonstandard location is in use got confused (560fb6a1).
155157
0 commit comments