I would like to check for author\'s e-mail and name, surname to verify who\'s pushing to my repo.
Is there any way that I can come up with a command in git to show c
git show | grep Author
Using git show + pipe + grep works!