Last Updated: February 25, 2016
·
180
· glittershark

Touch all modified files in your working directory, forcing files watched with ie Guard to run tests

git status --porcelain -uall |  awk '{print $2}' | xargs touch 

This will print some error messages if you have removed or renamed files, but will work just fine.