Skip to content

Instantly share code, notes, and snippets.

@tjcelaya
Last active August 29, 2015 14:18
Show Gist options
  • Save tjcelaya/fadced7d554b451323db to your computer and use it in GitHub Desktop.
Save tjcelaya/fadced7d554b451323db to your computer and use it in GitHub Desktop.
git status summary + modification time (sorted)
#!/bin/bash
git status --porcelain | awk '{print $2}' | xargs stat -f '%m %Sm %N' | sort | cut -d ' ' -f 2-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment