Hi! During a clone over https I got the following error:
fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed I was able to clone the repository over ssh. The repository has only 174.31MB. In the end I found the solution in increasing timeouts on the server. /etc/gitlab/gitlab.rb: nginx['keepalive_timeout'] = 600 # default 65 unicorn['worker_timeout'] = 600 # default 60 I saw that git pack-objects takes a long time (>2min) so I tried to set in /var/opt/gitlab/.gitconfig [pack] threads = 2 but this did not work. I am using debian wheezy. Does somebody know if git is compiled with pthread support on debian or how to activate it in the gitlab code? regards Markus Köberl -- Markus Koeberl Graz University of Technology Signal Processing and Speech Communication Laboratory E-mail: [email protected]
