我正在尝试通过在我的网络服务器上克隆我的git项目进行部署,但我无法让它工作
<?
require_once 'VersionControl/Git.php';
$git = new VersionControl_Git('/home/xxx/public_html/yyy');
$git->createClone('http://github.com/maysam/braincheck.git');
?>
但是我收到了错误:
致命错误:未捕获 VersionControl_Git_Exception :执行git命令时出现一些错误输出:错误:错误:请求的URL返回错误:403访问http://www.github.com/maysam/braincheck.git/info/refs致命时: /home/xxxx/php/VersionControl/Git.php 在行 164 异常跟踪#FunctionLocation 0VersionControl_Git_Util_Command-&gt; execute()/ home / xxxx / php / VersionControl / Git.php :164 1VersionControl_Git- in /home/xxxx/php/VersionControl/Git/Util/Command.php 237号线
答案 0 :(得分:0)
我认为您需要使用git://
网址。
$git->createClone('git://github.com/maysam/braincheck.git');