I am facing memory/data segment issues while running git. However, if I set my ulimits to a bit higher like below.
ulimit -m 262144
ulimit -d 262144
It runs fine. Don't we have anyway to allocate more memory/data segment while running git commands. Please help...I am really to new to git and unix both.
unlimited
, so perhaps you are on a system where limits have been configured. You could just addulimit -m unlimited
&ulimit -d unlimited
to~/.profile
and/or~/.bashrc
. – goldilocks Sep 30 '13 at 15:58