79456105

Date: 2025-02-21 00:23:37
Score: 1
Natty:
Report link

Git has a 10k quota changes on your working directory. This means Git cannot do its thing beyond 10k changes for every commit. When you delete a folder with lots of files, chances are you will reach that quota. For instance, I deleted a series of directories within the main directory which triggered 1,747,391 deletions. I do not know exactly how this translate in terms of Git changes but it was over 10k because of that as shown here:

enter image description here

Then this problem was fixed by itself after 10 commits. In VS Code, if you let your mouse over the commit history item it will show you that information.

enter image description here

Now everything is clean and back to normal.

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
Posted by: Konkret