Last active
July 11, 2023 00:22
-
-
Save 102/f2b7472441c124fbd10f4cdedae4cb8f to your computer and use it in GitHub Desktop.
get commits by author between two dates
This file contains 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
# to get commit messages of user 'rgusev' betwen 2017-01-01 and 2017-31-12 | |
# sh gitcommitsbydate.sh rgusev 2017-01-01 2017-31-12 | |
git log --author=$1 --pretty=format:"%s" --no-merges --after="$2" --before="$3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment