@@ -35,13 +35,19 @@ Foreign interfaces, subsystems and ports.
35
35
36
36
UI, Workflows & Features
37
37
38
+ * "git rm" gives a single message followed by list of paths to report
39
+ multiple paths that cannot be removed.
40
+
41
+ * "git rebase" can be told with ":/look for this string" syntax commits
42
+ to replay the changes onto and where the work to be replayed begins.
43
+
38
44
* Many tutorials teach users to set "color.ui" to "auto" as the first
39
45
thing after you set "user.name/email" to introduce yourselves to
40
46
Git. Now the variable defaults to "auto".
41
47
42
- * "git status" learned status.branch and status.short configuration
43
- variables to use --branch and --short options by default (override
44
- with --no-branch and --no-short options from the command line).
48
+ ### * "git status" learned status.branch and status.short configuration
49
+ ### variables to use --branch and --short options by default (override
50
+ ### with --no-branch and --no-short options from the command line).
45
51
46
52
* "git cmd <name>", when <name> happens to be a 40-hex string,
47
53
directly uses the 40-hex string as an object name, even if a ref
@@ -52,7 +58,8 @@ UI, Workflows & Features
52
58
53
59
* "git rebase" learned "--[no-]autostash" option to save local
54
60
changes instead of refusing to run (to which people's normal
55
- response was to stash them and re-run).
61
+ response was to stash them and re-run). This introduced a corner
62
+ case breakage to "git am --abort" but it has been fixed.
56
63
57
64
* Instead of typing four capital letters "HEAD", you can say "@" now,
58
65
e.g. "git log @".
@@ -147,6 +154,9 @@ Unless otherwise noted, all the fixes since v1.8.3 in the maintenance
147
154
track are contained in this release (see release notes to them for
148
155
details).
149
156
157
+ * "cherry-pick" had a small leak in an error codepath.
158
+ (merge 706728a fc/sequencer-plug-leak later to maint).
159
+
150
160
* Logic used by git-send-email to suppress cc mishandled names like
151
161
"A U. Thor" <
[email protected] >, where the human readable part
152
162
needs to be quoted (the user input may not have the double quotes
0 commit comments