Re: make index fail

From: Tatsuki Makino <tatsuki_makino_at_hotmail.com>
Date: Thu, 09 Jun 2022 21:04:28 UTC
Hello.

I think one good solution is to use git stash.

git stash push --all :/
make index (or operation that requires a clean tree of some kind)
git stash pop

Regards.