Skip to main content
-config did not work
Source Link
Jay Dee
  • 2.6k
  • 1
  • 19
  • 25

This is useful if your remote server has very limited ram. SSH to the remote server go to the repository then run:

git -config --add core.bigFileThreshold 1

This will turn off delta compression. if you want to undo it:

git -config --unset core.bigFileThreshold

This is useful if your remote server has very limited ram. SSH to the remote server go to the repository then run:

git -config --add core.bigFileThreshold 1

This will turn off delta compression. if you want to undo it:

git -config --unset core.bigFileThreshold

This is useful if your remote server has very limited ram. SSH to the remote server go to the repository then run:

git config --add core.bigFileThreshold 1

This will turn off delta compression. if you want to undo it:

git config --unset core.bigFileThreshold
Source Link
Soth
  • 3k
  • 2
  • 29
  • 28

This is useful if your remote server has very limited ram. SSH to the remote server go to the repository then run:

git -config --add core.bigFileThreshold 1

This will turn off delta compression. if you want to undo it:

git -config --unset core.bigFileThreshold