File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -45,5 +45,21 @@ Fixes since v2.5
4545 stable, which was a no-no. Apply a workaround to force a
4646 particular date format.
4747
48+ * "git clone $URL" in recent releases of Git contains a regression in
49+ the code that invents a new repository name incorrectly based on
50+ the $URL. This has been corrected.
51+ (merge db2e220 jk/guess-repo-name-regression-fix later to maint).
52+
53+ * Running tests with the "-x" option to make them verbose had some
54+ unpleasant interactions with other features of the test suite.
55+ (merge 9b5fe78 jk/test-with-x later to maint).
56+
57+ * "git pull" in recent releases of Git has a regression in the code
58+ that allows custom path to the --upload-pack=<program>. This has
59+ been corrected.
60+
61+ * pipe() emulation used in Git for Windows looked at a wrong variable
62+ when checking for an error from an _open_osfhandle() call.
63+
4864Also contains typofixes, documentation updates and trivial code
4965clean-ups.
Original file line number Diff line number Diff line change @@ -43,9 +43,10 @@ unreleased) version of Git, that is available from the 'master'
4343branch of the `git.git` repository.
4444Documentation for older releases are available here:
4545
46- * link:v2.5.0 /git.html[documentation for release 2.5]
46+ * link:v2.5.1 /git.html[documentation for release 2.5.1 ]
4747
4848* release notes for
49+ link:RelNotes/2.5.1.txt[2.5.1],
4950 link:RelNotes/2.5.0.txt[2.5].
5051
5152* link:v2.4.8/git.html[documentation for release 2.4.8]
Original file line number Diff line number Diff line change @@ -681,7 +681,7 @@ int pipe(int filedes[2])
681681 return -1 ;
682682 }
683683 filedes [1 ] = _open_osfhandle ((int )h [1 ], O_NOINHERIT );
684- if (filedes [0 ] < 0 ) {
684+ if (filedes [1 ] < 0 ) {
685685 close (filedes [0 ]);
686686 CloseHandle (h [1 ]);
687687 return -1 ;
You can’t perform that action at this time.
0 commit comments