# on a fresh clone of the Windows monorepo
git reset --mixed head~1
What did you expect to occur after running these commands?
I expected the files modified by the most recent commit to be moved to the "unstaged" status.
What actually happened instead?
Running git status reported that the working tree was clean. Note that if I had instead run git reset --soft head~1, the files would have correctly been put into the staged state. Subsequently running git reset --mixed head would trigger the repro, though.
This seems very similar to #490. @derrickstolee FYI.
If the problem was occurring with a specific repository, can you specify
the repository?
[ ] Public repo: insert URL here
[x] Windows monorepo
[ ] Office monorepo
[ ] Other Microsoft-internal repo: insert name here
git-for-windows/git
tracker.Setup
microsoft/git
are you using? Is it 32-bit or 64-bit?Are you using Scalar or VFS for Git?
VFS for Git.
The repo is the Windows monorepo
Details
PowerShell via Terminal Windows app
I expected the files modified by the most recent commit to be moved to the "unstaged" status.
Running
git status
reported that the working tree was clean. Note that if I had instead rungit reset --soft head~1
, the files would have correctly been put into the staged state. Subsequently runninggit reset --mixed head
would trigger the repro, though.This seems very similar to #490. @derrickstolee FYI.
If the problem was occurring with a specific repository, can you specify the repository?