From 2ceb0d7e6dd1db93a1fb4f4c54ed7d142264c5be Mon Sep 17 00:00:00 2001 From: Dmitry Kakurin Date: Thu, 16 Aug 2007 02:24:54 -0700 Subject: [PATCH] Fixed Issue 37: Errors during install because repo now has tags After creation of tags git fetch started failing because it requires git-unpack-objects now to follow tags. Signed-off-by: Dmitry Kakurin --- share/GitMe/Installer/setup-msysgit.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/GitMe/Installer/setup-msysgit.sh b/share/GitMe/Installer/setup-msysgit.sh index 82582206..67006e21 100644 --- a/share/GitMe/Installer/setup-msysgit.sh +++ b/share/GitMe/Installer/setup-msysgit.sh @@ -46,6 +46,9 @@ git config remote.mob.url \ ssh://mob@$MSYSGIT_REPO_GIT && git config remote.mob.fetch +refs/remote/mob:refs/remotes/origin/mob && git config remote.mob.push master:mob && + +cp $INSTALL_PATH/installer-tmp/bin/git.exe $INSTALL_PATH/installer-tmp/bin/git-unpack-objects.exe + (git fetch || (git config remote.origin.url \ http://$MSYSGIT_REPO_HTTP && -- 2.11.4.GIT