Skip to content

Instantly share code, notes, and snippets.

@st3b1t
Created June 16, 2023 20:43
Show Gist options
  • Save st3b1t/b08d1865dc182b392d42c2ede428816c to your computer and use it in GitHub Desktop.
Save st3b1t/b08d1865dc182b392d42c2ede428816c to your computer and use it in GitHub Desktop.
git list all authors of commits in repository
#!/bin/bash
#
# show all authors of commits in a git repository
#
# usage:
# git clone <http_github_repo>
# git_authors.sh
#
git log --all | grep Auth | sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment