Skip to content

Commit 23111fa

Browse files
committed
Updated for Git 1.7.3.2
Fixed the release.sh script to handle paths that include spaces when testing that git.exe is the newest file in /git. Signed-off-by: Pat Thoyts <[email protected]>
1 parent fe61e4c commit 23111fa

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

doc/git/html

Submodule html updated from 0fd857e to d2179ef

git

Submodule git updated from 279f4c2 to 817ffd4

share/WinGit/ReleaseNotes.rtf

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{\rtf1\ansi\ansicpg1252\deff0{\fonttbl{\f0\fswiss\fprq2\fcharset0 Arial;}{\f1\fnil\fcharset0 Arial;}{\f2\fnil\fcharset2 Symbol;}}
22
{\colortbl ;\red0\green0\blue0;\red0\green0\blue255;}
3-
{\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\cf1\lang1033\b\f0\fs32 Git Release Notes (Git-1.7.3.1-preview20101002)\b0\fs20\par
4-
Last update: 2 October 2010\par
3+
{\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\cf1\lang1033\b\f0\fs32 Git Release Notes (Git-1.7.3.2-preview20101025)\b0\fs20\par
4+
Last update: 25 October 2010\par
55
\par
66
\b\fs24 Introduction\b0\fs20\par
77
\par
@@ -19,7 +19,12 @@ General release notes covering the history of the core git commands are included
1919
{\pntext\f2\'B7\tab}If configured to use plink, you will have to connect with putty first and accept the host key.\par
2020
{\pntext\f2\'B7\tab}As merge tools are executed using the MSys bash, options starting with "/" need to be handled specially: MSys would interpret that as a POSIX path, so you need to double the slash (Issue 226). Example: instead of "/base", say "//base". Also, extra care has to be paid to pass Windows programs Windows paths, as they have no clue about MSys style POSIX paths -- You can use something like $(cmd //c echo "$POSIXPATH").\par
2121
\pard\b\fs24\par
22-
Changes since Git-1.7.2.3-preview20100911\par
22+
Changes since Git-1.7.3.1-preview20101002\par
23+
\par
24+
\i\fs20 New Features\par
25+
\pard{\pntext\f2\'B7\tab}{\*\pn\pnlvlblt\pnf2\pnindent0{\pntxtb\'B7}}\fi-288\li432\b0\i0 Comes with Git 1.7.3.2 plus patches.\par
26+
\pard\par
27+
\b\fs24 Changes since Git-1.7.2.3-preview20100911\par
2328
\par
2429
\i\fs20 New Features\par
2530
\pard{\pntext\f2\'B7\tab}{\*\pn\pnlvlblt\pnf2\pnindent0{\pntxtb\'B7}}\fi-288\li432\b0\i0 Comes with Git 1.7.3.1 plus patches.\par

share/WinGit/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ test -z "$force" && {
8484
git diff-index --cached HEAD --) ||
8585
die "Git submodule has dirty files"
8686
(cd /git &&
87-
test git.exe = $(ls -t git.exe $(git ls-files) | head -n 1)) ||
87+
test git.exe = $((printf 'git.exe\0'; git ls-files -z) | xargs --null ls -t 2>/dev/null| head -1)) ||
8888
die "Git's git.exe is not up-to-date (run 'cd /git && make' to fix)"
8989
for f in /bin/git* /libexec/git-core/git*
9090
do

0 commit comments

Comments
 (0)