@@ -21,6 +21,8 @@ Updates since v1.5.2
2121
2222* New commands and options.
2323
24+ - "git log --date=<format>" can use more formats: iso8601, rfc2822.
25+
2426 - The hunk header output from "git diff" family can be customized
2527 with the attributes mechanism. See gitattributes(5) for details.
2628
@@ -68,6 +70,10 @@ Updates since v1.5.2
6870 - "git gc --aggressive" tells the command to spend more cycles
6971 to optimize the repository harder.
7072
73+ - "git repack" learned a "window-memory" limit which
74+ dynamically reduces the window size to stay within the
75+ specified memory usage.
76+
7177 - "git repack" can be told to split resulting packs to avoid
7278 exceeding limit specified with "--max-pack-size".
7379
@@ -99,6 +105,9 @@ Updates since v1.5.2
99105
100106* Updated behavior of existing commands.
101107
108+ - "git rm --cached" does not complain when removing a newly
109+ added file from the index anymore.
110+
102111 - "git svn dcommit" retains local merge information.
103112
104113 - "git config" to set values also honors type flags like --bool
@@ -175,6 +184,11 @@ Updates since v1.5.2
175184 concatenate them into a single line and treat the result as
176185 "oneline".
177186
187+ - "git p4import" has been demoted to contrib status. For
188+ a superior option, checkout the git-p4 front end to
189+ git-fast-import (also in contrib). The man page and p4
190+ rpm have been removed as well.
191+
178192* Builds
179193
180194 - old-style function definitions (most notably, a function
@@ -218,6 +232,6 @@ this release, unless otherwise noted.
218232
219233--
220234exec >/var/tmp/1
221- O=v1.5.3-rc1
235+ O=v1.5.3-rc2
222236echo O=`git describe refs/heads/master`
223237git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
0 commit comments