Skip to content

Commit 6c7471b

Browse files
committed
Merge branch 'maint'
* maint: Update draft release notes to 1.7.5.2 Documentation/git-fsck.txt: fix typo: unreadable -> unreachable
2 parents c565cb4 + ea1ab4b commit 6c7471b

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

Documentation/RelNotes/1.7.5.2.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ The release notes to 1.7.5.1 forgot to mention:
1212
Fixes since v1.7.5.1
1313
--------------------
1414

15+
* "git add -p" did not work correctly when a hunk is split and then
16+
one of them was given to the editor.
17+
18+
* "git add -u" did not resolve a conflict where our history deleted and
19+
their history modified the same file, and the working tree resolved to
20+
keep a file.
21+
1522
* "git cvsimport" did not know that CVSNT stores its password file in a
1623
location different from the traditional CVS.
1724

@@ -21,13 +28,21 @@ Fixes since v1.7.5.1
2128
* "git diff -M --cached" used to use unmerged path as a possible rename
2229
source candidate, which made no sense.
2330

31+
* The option name parser in "git fast-import" used prefix matches for
32+
some options where it shouldn't, and accepted non-existent options,
33+
e.g. "--relative-marksmith" or "--forceps".
34+
2435
* "git format-patch" did not quote RFC822 special characters in the
2536
email address (e.g From: Junio C. Hamano <[email protected]>, not
2637
From: "Junio C. Hamano" <[email protected]>).
2738

2839
* "git format-patch" when run with "--quiet" option used to produce a
2940
nonsense result that consists of alternating empty output.
3041

42+
* In "git merge", per-branch branch.<name>.mergeoptions configuration
43+
variables did not override the fallback default merge.<option>
44+
configuration variables such as merge.ff, merge.log, etc.
45+
3146
* "git merge-one-file" did not honor GIT_WORK_TREE settings when
3247
handling a "both sides added, differently" conflict.
3348

Documentation/git-fsck.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ index file, all SHA1 references in .git/refs/*, and all reflogs (unless
2626
--no-reflogs is given) as heads.
2727

2828
--unreachable::
29-
Print out objects that exist but that aren't readable from any
29+
Print out objects that exist but that aren't reachable from any
3030
of the reference nodes.
3131

3232
--root::
@@ -76,7 +76,7 @@ It tests SHA1 and general object sanity, and it does full tracking of
7676
the resulting reachability and everything else. It prints out any
7777
corruption it finds (missing or bad objects), and if you use the
7878
'--unreachable' flag it will also print out objects that exist but
79-
that aren't readable from any of the specified head nodes.
79+
that aren't reachable from any of the specified head nodes.
8080

8181
So for example
8282

0 commit comments

Comments
 (0)