Skip to content

Instantly share code, notes, and snippets.

@esebastian
Created April 14, 2014 07:20
Show Gist options
  • Save esebastian/10623779 to your computer and use it in GitHub Desktop.
Save esebastian/10623779 to your computer and use it in GitHub Desktop.
Get the list of not yet committed binary files in a repo
git status -sb | awk '{ print $2 }' | sed -e '1d' | xargs perl -le 'for (@ARGV) { print unless -f && -T }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment