Created
June 3, 2022 15:11
-
-
Save MikelArnaiz/7658a211dc25c5e1a2901de1844ad689 to your computer and use it in GitHub Desktop.
Git. Log commits, branch filtered by author and date
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Based on https://stackoverflow.com/a/44494345/1355416 | |
echo "Branch | Message | Author | Date" | |
git for-each-ref \ | |
--sort=committerdate refs/heads/ \ | |
--format='%(HEAD) %(refname:short) | %(contents:subject) | %(authorname) | %(committerdate:short)' \ | |
| grep "Mikel Arnaiz | 2022-04-06" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment