Skip to content

Instantly share code, notes, and snippets.

@virtualstaticvoid
Created March 22, 2012 00:15
Show Gist options
  • Select an option

  • Save virtualstaticvoid/2154354 to your computer and use it in GitHub Desktop.

Select an option

Save virtualstaticvoid/2154354 to your computer and use it in GitHub Desktop.
Resets file modes in Git
#!/bin/bash
git diff --numstat | awk '{if ($1 == "0" && $2 == "0") print $3}' | xargs git checkout HEAD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment