Skip to content

Instantly share code, notes, and snippets.

@jclosure
Created February 27, 2023 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jclosure/fae86a3ecbfb97d79a6acbcb38b935d2 to your computer and use it in GitHub Desktop.
Save jclosure/fae86a3ecbfb97d79a6acbcb38b935d2 to your computer and use it in GitHub Desktop.
For all files in a repo, see who has been making all the changes in the project.
# cd <repo_dir>
git ls-tree -r master --name-only | xargs -I {} git --no-pager blame master -- {} | awk '{print $1, $2, $3, $4}' | sed 's/(//g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment