Skip to main content
gx recap shows recent commit activity, grouped by date. By default it shows your own commits from the last day — useful for standups, end-of-day reviews, or catching up after time away.

Usage

gx recap [@author] [flags]

Arguments

ArgumentDescription
@authorShow commits by a specific author (matches git author name). The @ prefix is optional.

Flags

FlagShortDescription
--days-dNumber of days to look back (default: 1)
--allShow all contributors, grouped by author
--limitMax commits to display (default: 100)

Examples

$ gx recap

Your activity in the last 1 day (my-project):

  Today:
    a1b2c3d  14:30  fix auth redirect
    b2c3d4e  11:15  add login page tests
    c3d4e5f  10:00  refactor auth module

  3 commits
In --all mode, your own name is highlighted as “You” in the output. Other authors are listed by their git author name.
  • Defaults to your git config user.name when no author is specified
  • If your git user name is not set, gx prints ERROR Cannot determine your git user. Set git config user.name or specify an author.
  • Uses --all flag on git log to search across all branches
  • Date grouping shows “Today”, “Yesterday”, or the date (e.g., “Apr 10”) for older entries
  • The repo name shown in the header is derived from the repo root directory name