My agent ran git status in a quicksand sandbox and every file looked modified.
Repro
Make a git repo on the host, mount it, run git status in the guest.
# make git repo for testing
mkdir /tmp/r && cd /tmp/r && git init -q . && echo hi > a.txt
git add -A && git commit -qm init
# quicksand part
quicksand run ubuntu --network full -v /tmp/r:/workspace
# in the quicksand emulator: apt-get install -y git && cd /workspace && git status
Every file shows as modified, and back on the host .git/index is gone.
My agent ran git status in a quicksand sandbox and every file looked modified.
Repro
Make a git repo on the host, mount it, run
git statusin the guest.Every file shows as modified, and back on the host
.git/indexis gone.