- * "git cvsimport" did not thoroughly cleanse tag names that it
- inferred from the names of the tags it obtained from CVS, which
- caused "git tag" to barf and stop the import in the middle.
-
- * "git show --format='%ci'" did not give timestamp correctly for
- commits created without human readable name on "committer" line.
- (merge e27ddb6 jc/maint-ident-missing-human-name later to maint).
-
- * "git cherry-pick A C B" used to replay changes in A and then B and
- then C if these three commits had committer timestamps in that
- order, which is not what the user who said "A C B" naturally
- expects.
- (merge a73e22e mz/cherry-pick-cmdline-order later to maint).
-
- * "git show --quiet" ought to be a synonym for "git show -s", but
- wasn't.
- (merge f9c75d8 jk/maint-quiet-is-synonym-to-s-in-log later to maint).
+ * "git log --all-match --grep=A --grep=B" ought to show commits that
+ mention both A and B, but when these three options are used with
+ --author or --committer, it showed commits that mention either A or
+ B (or both) instead.