@@ -30,8 +30,18 @@ Updates since v1.6.2
3030
3131(performance)
3232
33+ * many uses of lstat(2) in the codepath for "git checkout" have been
34+ optimized out.
35+
3336(usability, bells and whistles)
3437
38+ * rsync:/path/to/repo can be used to run git over rsync for local
39+ repositories. It may not be useful in practice; meant primarily for
40+ testing.
41+
42+ * (msysgit) progress output that is sent over the sideband protocol can
43+ be handled appropriately in Windows console.
44+
3545* "--pretty=<style>" option to the log family of commands can now be
3646 spelled as "--format=<style>". In addition, --format=%formatstring
3747 is a short-hand for --pretty=tformat:%formatstring.
@@ -62,6 +72,8 @@ Updates since v1.6.2
6272
6373* git-format-patch can be told to produce deep or shallow message threads.
6474
75+ * git-grep learned to highlight the found substrings in color.
76+
6577* git-imap-send learned to work around Thunderbird's inability to easily
6678 disable format=flowed with a new configuration, imap.preformattedHTML.
6779
@@ -71,6 +83,8 @@ Updates since v1.6.2
7183
7284* git-rebase can be told to report diffstat with the --stat option.
7385
86+ * Output from git-remote command has been vastly improved.
87+
7488* git-send-email learned --confirm option to review the Cc: list before
7589 sending the messages out.
7690
@@ -90,15 +104,30 @@ release, unless otherwise noted.
90104Here are fixes that this release has, but have not been backported to
91105v1.6.2.X series.
92106
107+ * "git diff --pickaxe-regexp" did not count overlapping matches
108+ correctly (backport by cherry-picking 50fd699).
109+
110+ * "git-fetch" in a repository that was not cloned from anywhere said
111+ it cannot find 'origin', which was hard to understand for new people.
112+
113+ * git-gc spent excessive amount of time to decide if an object appears
114+ in a locally existing pack (if needed, backport by merging 69e020a).
115+
116+ * "git-ls-files --deleted" did not work well with GIT_DIR&GIT_WORK_TREE
117+ (backport by cherry-picking 8ad3dae).
118+
119+ * "git-read-tree A B C..." without -m option has been broken for a long time
120+ (backport by merging jc/maint-1.6.0-read-tree-overlay)
121+
93122* 'git-submodule add' did not tolerate extra slashes and ./ in the
94123 path it accepted from the command line; it now is more lenient
95124 (if needed, backport by merging db75ada).
96125
97- * git-gc spent excessive amount of time to decide if an object appears
98- in a locally existing pack (if needed, backport by merging 69e020a).
126+ * git-send-email ignored --in-reply- to when --no-thread was given
127+ ( backport by merging tr/maint-1.6.0-send-email-irt)
99128
100129---
101130exec >/var/tmp/1
102- O=v1.6.2.1-135-g7d65c21
131+ O=v1.6.2.1-213-g7d4e3a7
103132echo O=$(git describe master)
104133git shortlog --no-merges $O..master ^maint
0 commit comments