@@ -15,6 +15,10 @@ preference configuration variable "push.default" to change this, and
15
15
"git push" will warn about the upcoming change until you set this
16
16
variable.
17
17
18
+ "git branch --set-upstream" is deprecated and may be removed in a
19
+ relatively distant future. "git branch [-u|--set-upstream-to]" has
20
+ been introduced with a saner order of arguments.
21
+
18
22
19
23
Updates since v1.7.12
20
24
---------------------
@@ -24,6 +28,16 @@ UI, Workflows & Features
24
28
* A credential helper for Win32 to allow access to the keychain of
25
29
the logged-in user has been added.
26
30
31
+ * A credential helper to allow access to the Gnome keyring has been
32
+ added.
33
+
34
+ * It was tempting to say "git branch --set-upstream origin/master",
35
+ but that tells Git to arrange the local branch "origin/master" to
36
+ integrate with the currently checked out branch, which is highly
37
+ unlikely what the user meant. The option is deprecated; use the
38
+ new "--set-upstream-to" (with a short-and-sweet "-u") option
39
+ instead.
40
+
27
41
* "git cherry-pick" learned the "--allow-empty-message" option to
28
42
allow it to replay a commit without any log message.
29
43
@@ -74,6 +88,16 @@ Unless otherwise noted, all the fixes since v1.7.12 in the
74
88
maintenance track are contained in this release (see release notes
75
89
to them for details).
76
90
91
+ * "git cherry-pick A C B" used to replay changes in A and then B and
92
+ then C if these three commits had committer timestamps in that
93
+ order, which is not what the user who said "A C B" naturally
94
+ expects.
95
+ (merge a73e22e mz/cherry-pick-cmdline-order later to maint).
96
+
97
+ * "git show --quiet" ought to be a synonym for "git show -s", but
98
+ wasn't.
99
+ (merge f9c75d8 jk/maint-quiet-is-synonym-to-s-in-log later to maint).
100
+
77
101
* "git p4", when "--use-client-spec" and "--detect-branches" are used
78
102
together, misdetected branches.
79
103
(merge 21ef5df pw/p4-use-client-spec-branch-detection later to maint).
0 commit comments