mirror of
https://github.com/tj/git-extras.git
synced 2026-09-12 16:36:22 -04:00
Although Github reserves the 'visionmedia' user space(a visit to there will be redirected to 'tj'), it's better to rename the links from visionmedia/git-extras to tj/git-extras
52 lines
1.4 KiB
Markdown
52 lines
1.4 KiB
Markdown
git-commits-since(1) -- Show commit logs since some date
|
|
========================================================
|
|
|
|
## SYNOPSIS
|
|
|
|
`git-commits-since` [<date>]
|
|
|
|
## DESCRIPTION
|
|
|
|
List of commits since the given _date_.
|
|
|
|
## OPTIONS
|
|
|
|
<date>
|
|
|
|
Show commits more recent than <date>. By default, the command shows the commit logs since "last week".
|
|
|
|
## EXAMPLES
|
|
|
|
It is really flexible and these are only 3 of the options, go ahead give it a try:
|
|
|
|
$ git commits-since yesterday
|
|
... commits since yesterday
|
|
nickl- - Merge branch upstream master.
|
|
nickl- - Rebase bolshakov with master
|
|
TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
|
|
TJ Holowaychuk - Merge pull request #129 from nickl-/develop
|
|
nickl- - Fix #127 git-ignore won't add duplicates.
|
|
|
|
$ git commits-since 3 o clock pm
|
|
... commits since 3 o clock pm
|
|
nickl- - Merge branch upstream master.
|
|
|
|
$ git commits-since 2 hour ago
|
|
... commits since 2 hour ago
|
|
nickl- - Merge branch upstream master.
|
|
TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
|
|
TJ Holowaychuk - Merge pull request #129 from nickl-/develop
|
|
|
|
|
|
## AUTHOR
|
|
|
|
Written by Tj Holowaychuk <<tj@vision-media.ca>>
|
|
|
|
## REPORTING BUGS
|
|
|
|
<<https://github.com/tj/git-extras/issues>>
|
|
|
|
## SEE ALSO
|
|
|
|
<<https://github.com/tj/git-extras>>
|