git - How to get all commit messages in a repo by one author? -
how can retrieve list of commit messages in git repo given commit author?
git log --all --author <author regex>
easy work out reading the documentation. note it's regex, characters may need escaped.
Comments
Post a Comment