Am Montag, 27. Oktober 2014 17:35:53 UTC+1 schrieb Michael Gardner: > It is failing/hanging with the following error: > error: RPC failed; result=22, HTTP code = 405 > > I took a look at the script and narrowed the issue down to this command: > git submodule update --recursive >
The problem: see git clone http://git.gitorious.org/gitorious/ui3.git must be httpS not http here the quick and dirty hack: nano upgrade.sh find this line: git checkout $GITORIOUS_VERSION -f modify to: git checkout $GITORIOUS_VERSION -f sed -i 's/http:/https:/' /var/www/gitorious/app/.git/config sed -i 's/http:/https:/' /var/www/gitorious/app/.gitmodules git submodule sync -- -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] --- You received this message because you are subscribed to the Google Groups "Gitorious" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
