2

目前,我使用 XAMPP 作为我的 Web 服务器。

现在,我想在我的 Web 服务器中创建一个 git 存储库。

结果,我想完美地运行这个命令行:

$ git-config remote.upload.url http://paultester@<servername>/new-repo.git/
$ git push upload master

我遵循了这个指南: http ://www.diggin-data.de/dd-cms/post/37/Installing+Git+http-backend+on+Windows+with+XAMPP

但我得到了这个错误

fatal: unable to access 'http://paultester@<servername>/new-repo.git/': Maximum (20) redirects followed

我怎样才能解决这个问题?

4

1 回答 1

0

检查是否可以在服务器端设置curl-setopt,如这里

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

XAMPP 服务器的替代方案是一个带有Gitea的二进制文件(无需配置):除了二进制文件外无需安装任何东西,您可以进行 HTTP 推送。

于 2019-11-18T05:16:24.867 回答