@@ -22,6 +22,9 @@ UI, Workflows & Features
2222 $HOME/.config/attributes and $HOME/.config/ignore respectively when
2323 these files exist.
2424
25+ * "git apply" learned to wiggle the base version and perform three-way
26+ merge when a patch does not exactly apply to the version you have.
27+
2528 * Scripted Porcelain writers now have access to the credential API via
2629 the "git credential" plumbing command.
2730
@@ -51,6 +54,9 @@ UI, Workflows & Features
5154 default location where the build procedure installs them locally;
5255 the variable can even point at a http:// URL.
5356
57+ * "git rebase [-i] --root $tip" can now be used to rewrite all the
58+ history leading to "$tip" down to the root commit.
59+
5460 * "git rebase -i" learned "-x <cmd>" to insert "exec <cmd>" after
5561 each commit in the resulting history.
5662
@@ -71,6 +77,8 @@ Foreign Interface
7177 * "mediawiki" remote helper (in contrib/) learned to handle file
7278 attachments.
7379
80+ * "git p4" now uses "Jobs:" and "p4 move" when appropriate.
81+
7482 * vcs-svn has been updated to clean-up compilation, lift 32-bit
7583 limitations, etc.
7684
@@ -106,6 +114,32 @@ Unless otherwise noted, all the fixes since v1.7.11 in the maintenance
106114releases are contained in this release (see release notes to them for
107115details).
108116
117+ * The error message from "git push $there :bogo" (and its equivalent
118+ "git push $there --delete bogo") mentioned that we tried and failed
119+ to guess what ref is being deleted based on the LHS of the refspec,
120+ which we don't.
121+ (merge 5742c82 jk/push-delete-ref-error-message later to maint).
122+
123+ * A handful of files and directories we create had tighter than
124+ necessary permission bits when the user wanted to have group
125+ writability (e.g. by setting "umask 002").
126+ (merge 6ff2b72 ar/clone-honor-umask-at-top later to maint).
127+
128+ * "commit --amend" used to refuse amending a commit with an empty log
129+ message, with or without "--allow-empty-message".
130+ (merge d9a9357 cw/amend-commit-without-message later to maint).
131+
132+ * "git commit --amend --only --" was meant to allow "Clever" people to
133+ rewrite the commit message without making any change even when they
134+ have already changes for the next commit added to their index, but
135+ it never worked as advertised since it was introduced in 1.3.0 era.
136+ (merge ea2d4ed jk/maint-commit-amend-only-no-paths later to maint).
137+
138+ * Even though the index can record pathnames longer than 1<<12 bytes,
139+ in some places we were not comparing them in full, potentially
140+ replacing index entries instead of adding.
141+ (merge d5f5333 tg/maint-cache-name-compare later to maint).
142+
109143 * "git show"'s auto-walking behaviour was an unreliable and
110144 unpredictable hack; it now behaves just like "git log" does when it
111145 walks.
0 commit comments