@@ -27,7 +27,7 @@ Updates since v1.8.0
27
27
28
28
UI, Workflows & Features
29
29
30
- * Command-line completion for tcsh has been added.
30
+ * Command-line completion scripts for tcsh and zsh have been added.
31
31
32
32
* We used to have a workaround for a bug in ancient "less" that
33
33
causes it to exit without any output when the terminal is resized.
@@ -44,13 +44,22 @@ UI, Workflows & Features
44
44
give the default number of context lines in the patch output, to
45
45
override the hardcoded default of 3 lines.
46
46
47
+ * When "git checkout" checks out a branch, it tells the user how far
48
+ behind (or ahead) the new branch is relative to the remote tracking
49
+ branch it builds upon. The message now also advises how to sync
50
+ them up by pushing or pulling.
51
+
47
52
* "git config --get" used to diagnose presence of multiple
48
53
definitions of the same variable in the same configuration file as
49
54
an error, but it now applies the "last one wins" rule used by the
50
55
internal configuration logic. Strictly speaking, this may be an
51
56
API regression but it is expected that nobody will notice it in
52
57
practice.
53
58
59
+ * "git log -p -S<string>" now looks for the <string> after applying
60
+ the textconv filter (if defined); earlier it inspected the contents
61
+ of the blobs without filtering.
62
+
54
63
* "git format-patch" learned the "--notes=<ref>" option to give
55
64
notes for the commit after the three-dash lines in its output.
56
65
0 commit comments