I've just upgraded to git 2.32 on my Mac (through brew install git
).
Now my git-prompt says (branchname|SPARSE)
on all local repositories.
I have to run git config core.sparsecheckout false
on each repository to get this label to go away:
montag:iPlug2 (master|SPARSE) $ git status
On branch master
Your branch is up to date with 'origin/master'.
You are in a sparse checkout with 100% of tracked files present.
nothing to commit, working tree clean
montag:iPlug2 (master|SPARSE) $ git config core.sparsecheckout false
montag:iPlug2 (master) $
Why is this suddenly appearing, and can I fix it all at once?