1GIT-COMMITS-SINCE(1) Git Extras GIT-COMMITS-SINCE(1)
2
3
4
6 git-commits-since - Show commit logs since some date
7
9 git-commits-since [<date>]
10
12 List of commits since the given date.
13
15 <date>
16
17 Show commits more recent than date. By default, the command shows the
18 commit logs since "last week".
19
21 It is really flexible and these are only 3 of the options, go ahead
22 give it a try:
23
24
25
26 $ git commits-since yesterday
27 nickl- - Merge branch upstream master.
28 nickl- - Rebase bolshakov with master
29 TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
30 TJ Holowaychuk - Merge pull request #129 from nickl-/develop
31 nickl- - Fix #127 git-ignore won´t add duplicates.
32
33 $ git commits-since 3 o clock pm
34 nickl- - Merge branch upstream master.
35
36 $ git commits-since 2 hour ago
37 nickl- - Merge branch upstream master.
38 TJ Holowaychuk - Merge pull request #128 from nickl-/git-extras-html-hyperlinks
39 TJ Holowaychuk - Merge pull request #129 from nickl-/develop
40
41
42
44 Written by Tj Holowaychuk <tj@vision-media.ca>
45
47 <https://github.com/tj/git-extras/issues>
48
50 <https://github.com/tj/git-extras>
51
52
53
54 October 2017 GIT-COMMITS-SINCE(1)