I want to unstage all file deletes. Is there an easy way?
I want to apply this to the file pattern of all deletes.
Just in case anyone else uses git with PowerShell, here is a powershell version of @jefromi's excellent answer:
git status --porcelain | where { $_.StartsWith(" D") } | foreach-object { git reset HEAD $_.replace(" D ", "") }