From b4e03a5a95e1011671ecc33b8dce06b9b1c1cc09 Mon Sep 17 00:00:00 2001 From: Pat Thoyts Date: Wed, 24 Oct 2012 00:53:20 +0100 Subject: [PATCH] Include the wincred credentials helper in the Git for Windows installer. Make the git contrib modules _after_ we have made git itself. Signed-off-by: Pat Thoyts --- git | 2 +- share/WinGit/release.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/git b/git index 52d3a758..1cbcfaea 160000 --- a/git +++ b/git @@ -1 +1 @@ -Subproject commit 52d3a7583a4ef9d6019fbfcb72e9088f93e59756 +Subproject commit 1cbcfaea2edd04271847d0424285c08ab19c9931 diff --git a/share/WinGit/release.sh b/share/WinGit/release.sh index a59e32d9..e3f3769f 100755 --- a/share/WinGit/release.sh +++ b/share/WinGit/release.sh @@ -76,11 +76,13 @@ test "$do_compile" && { git add share/WinGit/ReleaseNotes.rtf && git commit -m "Git for Windows $version" fi) && - (cd git/contrib/subtree && - make install INSTALL=/bin/install prefix=) && (cd git && create_msysgit_tag $version && make install) && + (cd git/contrib/subtree && + make install INSTALL=/bin/install prefix=) && + (cd git/contrib/credential/wincred && + make install INSTALL=/bin/install prefix=) && /src/mingw-w64/release-easy.sh && /src/mingw-w64/release-zlib.sh && (cd src/git-cheetah/explorer/ && -- 2.11.4.GIT