Last active
February 13, 2025 11:57
-
-
Save r0oland/16465a136518a94c14b2b84f48e06d7d to your computer and use it in GitHub Desktop.
GIT Usefull
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
# pretty output on command line | |
git log --since='1 month ago' --format='%Cgreen%ci%Creset %s%Creset' --no-merges | |
# more details | |
git log --since='1 month ago' --format='%Cgreen%ci%Creset %s%Creset' --no-merges --shortstat | |
# even more details | |
git log --since='1 month ago' --format='%Cgreen%ci%Creset %s%Creset' --no-merges --stat | |
# output to summary file | |
git log --since='1 year ago' --format='%Cgreen%ci%Creset %s%Creset' --shortstat --no-merges > commit_summary.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment