Last active
March 8, 2018 18:02
-
-
Save nejdetckenobi/8a33896665f48522d976039041beb2ab to your computer and use it in GitHub Desktop.
"What did I do today" command for git.
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
You can use "git today" alias for listing your work | |
git config --global alias.today "log --since=midnight --author='$(git config user.name)' --oneline" | |
Be sure your username is set first! | |
git config --global user.name "your_beautiful_username" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider adding --all to your alias in line 3. Otherwise, only changes from your current branch will be reported.