I am on a shared hosting plan and I've done numerous git projects/commands with my web host. However I'm starting a new project which is still pretty small (4MB) compared to a bigger project (8MB) that I am able to successfully host with them without any issues.
When I ran git clone ... command, I got the following:
[email protected] [~/project.domain.com]# git clone [email protected]:dokgu/project.git .
Cloning into '.'...
remote: Enumerating objects: 1925, done.
remote: Counting objects: 100% (1925/1925), done.
remote: Compressing objects: 100% (1642/1642), done.
remote: Total 1925 (delta 305), reused 1864 (delta 271), pack-reused 0
Receiving objects: 100% (1925/1925), 3.61 MiB | 8.54 MiB/s, done.
fatal: unable to create thread: Resource temporarily unavailable
fatal: index-pack failed
I already tried calling their technical support line but they weren't any help.
I was also trying to see the memory status of my account and this is what I found:
[email protected] [~]# free -m
total used free shared buffers cached
Mem: 128963 126375 2587 245 17221 76232
-/+ buffers/cache: 32920 96042
Swap: 5999 362 5637
As you can see, I only have 2.5MB of available memory but when I try to list any processes that are taking memory:
[email protected] [~]# ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
dokgu 1 0.0 0.0 16628 2776 ? SN 18:28 0:00 /usr/local/cpanel/bin/jailshell -l
dokgu 52 0.0 0.0 18508 2064 ? RN+ 18:31 0:00 ps aux
What do I do from here when the hosting company's technical support isn't even able to help me?