Skip to content

Commit cb35c06

Browse files
committed
Update release notes
As 1.7.4.3 has backmerged a handful of fixes from the master, drop these entries from 1.7.5 release notes. Signed-off-by: Junio C Hamano <[email protected]>
1 parent 8f84c95 commit cb35c06

File tree

2 files changed

+21
-23
lines changed

2 files changed

+21
-23
lines changed

Documentation/RelNotes/1.7.5.txt

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ Updates since v1.7.4
1414

1515
* Update to more modern HP-UX port.
1616

17-
* The codebase is getting prepared for i18n/l10n; no translated/translatable
18-
strings in the code yet.
17+
* The codebase is getting prepared for i18n/l10n; no translated
18+
strings nor translation mechanism in the code yet, but the strings
19+
are being marked for l10n.
1920

2021
* The bash completion script can now complete symmetric difference
2122
for "git diff" command, e.g. "git diff ...bra<TAB>".
@@ -27,10 +28,6 @@ Updates since v1.7.4
2728
* "git apply -v" reports offset lines when the patch does not apply at
2829
the exact location recorded in the diff output.
2930

30-
* "git branch --track" (and "git checkout --track --branch") used to
31-
allow setting up a random non-branch that does not make sense to follow
32-
as the "upstream". The command correctly diagnoses it as an error.
33-
3431
* "git config" used to be also known as "git repo-config", but the old
3532
name is now officially deprecated.
3633

@@ -63,6 +60,12 @@ Updates since v1.7.4
6360
* "git grep --no-index" did not honor pathspecs correctly, returning
6461
paths outside the specified area.
6562

63+
* "git init" learned the --separate-git-dir option to allow the git
64+
directory for a new repository created elsewhere and linked via the
65+
gitdir mechanism. This is primarily to help submodule support later
66+
to switch between a branch of superproject that has the submodule
67+
and another that does not.
68+
6669
* "git log" type commands now understand globbing pathspecs. You
6770
can say "git log -- '*.txt'" for example.
6871

@@ -71,6 +74,10 @@ Updates since v1.7.4
7174
or highlighting equivalent changes that appear on both sides of a
7275
symmetric difference (e.g. "log --cherry A...B").
7376

77+
* A lazy "git merge" that didn't say what to merge used to be an error.
78+
When run on a branch that has an upstream defined, however, the command
79+
now merges from the configured upstream.
80+
7481
* "git mergetool" learned how to drive "beyond compare 3" as well.
7582

7683
* "git rerere forget" without pathspec used to forget all the saved
@@ -104,17 +111,6 @@ Fixes since v1.7.4
104111
All of the fixes in the v1.7.4.X maintenance series are included in this
105112
release, unless otherwise noted.
106113

107-
* "git apply" used to confuse lines updated by previous hunks as lines
108-
that existed before when applying a hunk, contributing misapplication
109-
of patches with offsets.
110-
111-
* "git checkout $other_branch" silently removed untracked symbolic links
112-
in the working tree that are in the way in order to check out paths
113-
under it from the named branch (js/checkout-untracked-symlink).
114-
115-
* "git diff --quiet" did not work very well with the "--diff-filter"
116-
option (jc/maint-diff-q-filter).
117-
118114
* "git fetch" from a client that is mostly following the remote
119115
needlessly told all of its refs to the server for both sides to
120116
compute the set of objects that need to be transferred efficiently,
@@ -128,13 +124,13 @@ release, unless otherwise noted.
128124
reachable from the refs in their common alternate object store,
129125
causing it to fetch unnecessary objects (jc/maint-fetch-alt).
130126

131-
* "git stash apply" reported the result of its operation by running
132-
"git status" from the top-level of the working tree; it should (and
133-
now does) run it from the user's working directory
134-
(pk/stash-apply-status-relative).
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).
135131

136132
---
137133
exec >/var/tmp/1
138-
O=v1.7.5-rc0
134+
O=v1.7.5-rc0-99-g8f84c95
139135
echo O=$(git describe 'master')
140136
git shortlog --no-merges ^maint ^$O master

Documentation/git.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,11 @@ 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.1/git.html[documentation for release 1.7.4.1]
47+
* link:v1.7.4.3/git.html[documentation for release 1.7.4.3]
4848

4949
* release notes for
50+
link:RelNotes/1.7.4.3.txt[1.7.4.3],
51+
link:RelNotes/1.7.4.2.txt[1.7.4.2],
5052
link:RelNotes/1.7.4.1.txt[1.7.4.1],
5153
link:RelNotes/1.7.4.txt[1.7.4].
5254

0 commit comments

Comments
 (0)