mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
95 lines
1.9 KiB
Groff
95 lines
1.9 KiB
Groff
.\" generated with Ronn/v0.7.3
|
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
.
|
|
.TH "GIT\-STANDUP" "1" "April 2016" "" ""
|
|
.
|
|
.SH "NAME"
|
|
\fBgit\-standup\fR \- Recall the commit history
|
|
.
|
|
.SH "SYNOPSIS"
|
|
\fBgit\-standup\fR [<full name>] [<since>] [<until>]
|
|
.
|
|
.SH "DESCRIPTION"
|
|
Recall what you did on the last working day \.\.or be nosy and find what someone else did\.
|
|
.
|
|
.SH "OPTIONS"
|
|
<full name>
|
|
.
|
|
.P
|
|
The author of commits\. Defaults to \fB$(git config user\.name)\fR\.
|
|
.
|
|
.P
|
|
<since>
|
|
.
|
|
.P
|
|
The start of commit history\. Defaults to \fByesterday\fR\.
|
|
.
|
|
.P
|
|
<until>
|
|
.
|
|
.P
|
|
The end of commit history\. Defaults to \fBtoday\fR\.
|
|
.
|
|
.SH "EXAMPLES"
|
|
This shows your commits since yesterday:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
$ git standup
|
|
|
|
a26d1f9 \- add profile hook (69 minutes ago) <spacewander>
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
This shows the author\'s commits since last week:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
$ git standup spacewander "last week"
|
|
|
|
a26d1f9 \- add profile hook (70 minutes ago) <spacewander>
|
|
4e19859 \- fix getTotalSize return value error (6 days ago) <spacewander>
|
|
36da84e \- fix rename over bound (7 days ago) <spacewander>
|
|
8e4182a \- add watermark\.png (7 days ago) <spacewander>
|
|
46fef1d \- use tinyXML to configure (7 days ago) <spacewander>
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
If current directory is not a git repo, git\-standup will fetch data from all top\-level git repos under it:
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
$ cd \.\.
|
|
$ git standup spacewander "last week" yesterday
|
|
|
|
someProject/
|
|
4e19859 \- fix getTotalSize return value error (6 days ago) <spacewander>
|
|
36da84e \- fix rename over bound (7 days ago) <spacewander>
|
|
8e4182a \- add watermark\.png (7 days ago) <spacewander>
|
|
46fef1d \- use tinyXML to configure (7 days ago) <spacewander>
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.SH "AUTHOR"
|
|
Originally from https://github\.com/kamranahmedse/git\-standup
|
|
.
|
|
.SH "REPORTING BUGS"
|
|
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
|
|
.
|
|
.SH "SEE ALSO"
|
|
<\fIhttps://github\.com/tj/git\-extras\fR>
|