Skip to content

Instantly share code, notes, and snippets.

@rms1000watt
Created October 22, 2018 18:17
Show Gist options
  • Save rms1000watt/352527a0de71bf209b76dca72f58838c to your computer and use it in GitHub Desktop.
Save rms1000watt/352527a0de71bf209b76dca72f58838c to your computer and use it in GitHub Desktop.
Sort files by Git Date
#!/usr/bin/env bash
git ls-files -z -- . | xargs -0 -n1 -I{} -- git log -1 --format="%at {}" {} | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment