git-standup(1) -- Recall the commit history ================================= ## SYNOPSIS `git-standup` [<full name>] [<since>] [<until>] ## DESCRIPTION Recall what you did on the last working day ..or be nosy and find what someone else did. ## OPTIONS <full name> The author of commits. Defaults to `$(git config user.name)`. <since> The start of commit history. Defaults to `yesterday`. <until> The end of commit history. Defaults to `today`. ## EXAMPLES This shows your commits since yesterday: $ git standup a26d1f9 - add profile hook (69 minutes ago) This shows the author's commits since last week: $ git standup spacewander "last week" a26d1f9 - add profile hook (70 minutes ago) 4e19859 - fix getTotalSize return value error (6 days ago) 36da84e - fix rename over bound (7 days ago) 8e4182a - add watermark.png (7 days ago) 46fef1d - use tinyXML to configure (7 days ago) If current directory is not a git repo, git-standup will fetch data from all top-level git repos under it: $ cd .. $ git standup spacewander "last week" yesterday someProject/ 4e19859 - fix getTotalSize return value error (6 days ago) 36da84e - fix rename over bound (7 days ago) 8e4182a - add watermark.png (7 days ago) 46fef1d - use tinyXML to configure (7 days ago) ## AUTHOR Originally from https://github.com/kamranahmedse/git-standup ## REPORTING BUGS <> ## SEE ALSO <>