@@ -54,6 +54,8 @@ Updates since v1.7.4
54
54
negotiation is done. This saves one HTTP RPC, reducing the overall
55
55
latency for a trivial fetch.
56
56
57
+ * "git fetch" can be told to recursively fetch submodules on-demand.
58
+
57
59
* "git grep -f <filename>" learned to treat "-" as "read from the
58
60
standard input stream".
59
61
@@ -92,16 +94,16 @@ Updates since v1.7.4
92
94
"tracking" is used as the push.default semantics or there is no remote
93
95
configured yet.
94
96
97
+ * A possible value to the "push.default" configuration variable,
98
+ 'tracking', gained a synonym that more naturally describes what it
99
+ does, 'upstream'.
100
+
95
101
* "git rerere" learned a new subcommand "remaining" that is similar to
96
102
"status" and lists the paths that had conflicts which are known to
97
103
rerere, but excludes the paths that have already been marked as
98
104
resolved in the index from its output. "git mergetool" has been
99
105
updated to use this facility.
100
106
101
- * A possible value to the "push.default" configuration variable,
102
- 'tracking', gained a synonym that more naturally describes what it
103
- does, 'upstream'.
104
-
105
107
Also contains various documentation updates.
106
108
107
109
@@ -124,13 +126,13 @@ release, unless otherwise noted.
124
126
reachable from the refs in their common alternate object store,
125
127
causing it to fetch unnecessary objects (jc/maint-fetch-alt).
126
128
127
- * "git pull" into an empty branch should have behaved as if
128
- fast-forwarding from emptiness to the version being pulled, with
129
- the usual protection against overwriting untracked files (need to
130
- cherry-pick 4b3ffe5) .
129
+ * "git remote add --mirror" created a configuration that is suitable for
130
+ doing both a mirror fetch and a mirror push at the same time, which
131
+ made little sense. We now warn and require the command line to specify
132
+ either --mirror=fetch or --mirror=push .
131
133
132
134
---
133
135
exec >/var/tmp/1
134
- O=v1.7.5-rc0-99-g8f84c95
136
+ O=v1.7.5-rc1
135
137
echo O=$(git describe 'master')
136
138
git shortlog --no-merges ^maint ^$O master
0 commit comments