Skip to content

Commit 6be0559

Browse files
committed
Git 1.7.5-rc1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent e38f2a8 commit 6be0559

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

Documentation/RelNotes/1.7.5.txt

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ Updates since v1.7.4
5454
negotiation is done. This saves one HTTP RPC, reducing the overall
5555
latency for a trivial fetch.
5656

57+
* "git fetch" can be told to recursively fetch submodules on-demand.
58+
5759
* "git grep -f <filename>" learned to treat "-" as "read from the
5860
standard input stream".
5961

@@ -92,16 +94,16 @@ Updates since v1.7.4
9294
"tracking" is used as the push.default semantics or there is no remote
9395
configured yet.
9496

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+
95101
* "git rerere" learned a new subcommand "remaining" that is similar to
96102
"status" and lists the paths that had conflicts which are known to
97103
rerere, but excludes the paths that have already been marked as
98104
resolved in the index from its output. "git mergetool" has been
99105
updated to use this facility.
100106

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-
105107
Also contains various documentation updates.
106108

107109

@@ -124,13 +126,13 @@ release, unless otherwise noted.
124126
reachable from the refs in their common alternate object store,
125127
causing it to fetch unnecessary objects (jc/maint-fetch-alt).
126128

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.
131133

132134
---
133135
exec >/var/tmp/1
134-
O=v1.7.5-rc0-99-g8f84c95
136+
O=v1.7.5-rc1
135137
echo O=$(git describe 'master')
136138
git shortlog --no-merges ^maint ^$O master

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,10 @@ unreleased) version of git, that is available from 'master'
4444
branch of the `git.git` repository.
4545
Documentation for older releases are available here:
4646

47-
* link:v1.7.4.3/git.html[documentation for release 1.7.4.3]
47+
* link:v1.7.4.4/git.html[documentation for release 1.7.4.4]
4848

4949
* release notes for
50+
link:RelNotes/1.7.4.4.txt[1.7.4.4],
5051
link:RelNotes/1.7.4.3.txt[1.7.4.3],
5152
link:RelNotes/1.7.4.2.txt[1.7.4.2],
5253
link:RelNotes/1.7.4.1.txt[1.7.4.1],

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.7.5-rc0
4+
DEF_VER=v1.7.5-rc1
55

66
LF='
77
'

0 commit comments

Comments
 (0)