LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-standup

Show recent commits for standup meetings

TLDR

Show recent commits by you
$ git standup
copy
Show for specific days
$ git standup -d [3]
copy
Show for all authors
$ git standup -a all
copy
Show for specific author
$ git standup -a "[author]"
copy
Show with date range
$ git standup -D "[2024-01-01]" -U "[2024-01-07]"
copy

SYNOPSIS

git standup [options]

DESCRIPTION

git standup displays your recent commits, designed for daily standup meetings. Part of git-extras, it shows what you worked on recently and can scan across multiple repositories.The command defaults to showing your commits from the last working day, making it easy to recall what you accomplished.

PARAMETERS

-d DAYS

Show commits from the past DAYS days (default: 1, with Monday-aware look-back of 3 days).
-a AUTHOR
Limit to a specific author. Pass all for every author.
-D DATE
Start of the date range (overrides -d).
-U DATE
End of the date range.
-m DEPTH
Recursively scan directories up to DEPTH levels deep for git repositories.
-L
Toggle inclusion of git diff stat for each commit.
-B BRANCH
Restrict to commits on BRANCH.
-f
Fetch from the remote before scanning.
-g
Show GPG signature info for each commit.

SEE ALSO

Copied to clipboard
Kai