When finding and replacing across a large repository, I get a bunch of files with a typechange status. These are mostly symlinks.
Rather than
git checkout -- eachfile.name
Is there a way to reset only typechange files?
git status | grep typechange | awk '{print $2}' | xargs git checkout