Skip to content

Commit 32341b9

Browse files
committed
Merge branch 'maint'
* maint: Prepare for 1.7.5.2 t5400: Fix a couple of typos Conflicts: RelNotes
2 parents 240fe05 + 375f8a0 commit 32341b9

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed

Documentation/RelNotes/1.7.5.2.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Git v1.7.5.2 Release Notes
2+
==========================
3+
4+
The release notes to 1.7.5.1 forgot to mention:
5+
6+
* "git stash -p --no-keep-index" and "git stash --no-keep-index -p" now
7+
mean the same thing.
8+
9+
* "git upload-pack" (hence "git push" over git native protocol) had a
10+
subtle race condition that could lead to a deadlock.
11+
12+
Fixes since v1.7.5.1
13+
--------------------
14+
15+
* "git cvsimport" did not know that CVSNT stores its password file in a
16+
location different from the traditional CVS.
17+
18+
* "git diff-files" did not show the mode information from the working
19+
tree side of an unmerged path correctly.
20+
21+
* "git diff -M --cached" used to use unmerged path as a possible rename
22+
source candidate, which made no sense.
23+
24+
* "git merge-one-file" did not honor GIT_WORK_TREE settings when
25+
handling a "both sides added, differently" conflict.
26+
27+
* "git-p4" (in contrib) used a wrong base image while merge a file that
28+
was added on both branches differently.
29+
30+
* "git rebase -i -p" failed to preserve the history when there is a
31+
redundant merge created with the --no-ff option.
32+
33+
And other minor fixes and documentation updates.

t/t5400-send-pack.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ test_expect_success 'pushing explicit refspecs respects forcing' '
190190
+refs/heads/master:refs/heads/master
191191
) &&
192192
parent_head=$(cd parent && git rev-parse --verify master) &&
193-
child_head=$(cd parent && git rev-parse --verify master) &&
193+
child_head=$(cd child && git rev-parse --verify master) &&
194194
test "$parent_head" = "$child_head"
195195
'
196196

@@ -210,7 +210,7 @@ test_expect_success 'pushing wildcard refspecs respects forcing' '
210210
"+refs/heads/*:refs/heads/*"
211211
) &&
212212
parent_head=$(cd parent && git rev-parse --verify master) &&
213-
child_head=$(cd parent && git rev-parse --verify master) &&
213+
child_head=$(cd child && git rev-parse --verify master) &&
214214
test "$parent_head" = "$child_head"
215215
'
216216

0 commit comments

Comments
 (0)