我是Git的新手,如果这是一个愚蠢的问题,请原谅我.
在我最初推送到GitHub时,使用 git push origin master
我收到以下错误:
计数对象:1499,完成.Delta压缩使用多达16个线程.压缩对象:100%(1455/1455),完成.错误:pack-objects死于信号923 MiB | 9.10 MiB/s
致命:远程终端意外致命致命:远程终端意外致命致命:写入错误:文件描述符错误
我错过了什么吗?
我正在尝试将使用Symfony 1.2构建的项目从一台服务器迁移到另一台服务器.该项目的一个功能是构建一个图表(最初使用JpGraph 2.3.5完成).
如果不对代码进行修改,图表就不会按预期显示,而是希望了解我可能会忽略的内容. 由于没有足够的点张贴,图片被链接. 图形图库
下图是下面的代码块生成的图表
<?php
public function Graph($section) {
$report = $section->getReport();
$this->crews = array();
foreach ($section->getCrews() as $crew) {
$this->crews[$crew->getId()] = $crew;
};
# get the data
$nextDayValues = $section->getNextDayValues();
$nextDayValueLabels = $section->getNextDayValueLabels();
$max_y = max($nextDayValues) < 7 ? 7 : max($nextDayValues);
$this->crew_order = array_keys($nextDayValues);
$this->summary = $this->getSummary();
$this->bar_count = count($this->crews) + count($this->summary);
$left = 200;
$right = 30;
$top = 60;
$bottom = 80;
$width = 640;
$height = $top + $bottom + ($this->bar_count …Run Code Online (Sandbox Code Playgroud)