Can you help me work out where it’s running out of space?
When I do du -h
and ls
etc it doesn’t seem to be running out of space.
Can you help me work out where it’s running out of space?
When I do du -h
and ls
etc it doesn’t seem to be running out of space.
It’s always worth taking a look at the size of your .git directory - git gc
and git prune
can help reclaim some space, and if you are not concerned about losing your git history, you can remove the .git directory using rm -rf .git
from the Terminal.
Are you seeing a problem because you’re running out of space, or are you getting a warning in the logs? I think we occasionally give a warning when we shouldn’t, so that’s also a possibility.
Seeing the warning in the logs, no other warnings.
Have tried deleting the .git folder. Thanks both!