This morning I made a shallow clone of the Linux sources
git clone --depth 1 https://github.com/torvalds/linux.git
which resulted in a linux
folder of 851Mb.
Now I would like to pull the latest changes, but
git pull
starts a seemly huge download. After 60Mb I'm at 3% which extrapolates to 2Gb. However, the 5 commits since my clone change only a bunch of lines.
Am I doing something wrong? What are the 2Gb that git
tries to download?