Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save technoknol/43076ad7beb206b62f4e7b1150704839 to your computer and use it in GitHub Desktop.
Save technoknol/43076ad7beb206b62f4e7b1150704839 to your computer and use it in GitHub Desktop.
Get all files added/changed so far by author name
git log --author="technoknol" --name-status --diff-filter=A --format='> %aN' | awk '/^>/ {tagline=$0} /^A\t/ {print tagline "\t" $0}' > changes.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment