1GIT-STANDUP(1) Git Extras GIT-STANDUP(1)
2
3
4
6 git-standup - Recall the commit history
7
9 git-standup [-a author] [-m depth] [-d days ago] [-D date format] [-g]
10 [-L] [-f]
11
12 git-standup -h
13
15 Recall what you did on the last working day ..or be nosy and find what
16 someone else did.
17
19 -a author
20
21 The author of commits. Use "all" means specifying "all authors".
22 Defaults to $(git config user.name).
23
24 -m depth
25
26 The depth of recursive directory search. Defaults to 1.
27
28 -L
29
30 Enable the inclusion of symbolic links in recursive directory search.
31
32 -d 1
33
34 The start of commit history. Defaults to 1, means "1 days ago".
35
36 -D relative
37
38 The date format displayed in commit history. Defaults to "relative".
39
40 -h
41
42 Display help message.
43
44 -g
45
46 Display if commit is GPG signed (G) or not (N) in commit message.
47
48 -f
49
50 Fetch the latest commits before showing commit history.
51
52 The former version of git standup accepted <author> <since> <until> as
53 options. This interface is deprecated now, and please avoid to use it!
54
56 This shows your commits since yesterday:
57
58
59
60 $ git standup
61
62 a26d1f9 - add profile hook (69 minutes ago) <spacewander>
63
64
65
66 This shows the authorĀ“s commits since last week:
67
68
69
70 $ git standup -a spacewander -d 7
71
72 a26d1f9 - add profile hook (70 minutes ago) <spacewander>
73 4e19859 - fix getTotalSize return value error (6 days ago) <spacewander>
74 36da84e - fix rename over bound (7 days ago) <spacewander>
75 8e4182a - add watermark.png (7 days ago) <spacewander>
76 46fef1d - use tinyXML to configure (7 days ago) <spacewander>
77
78
79
80 If current directory is not a git repo, git-standup will fetch data
81 from all top-level git repos under it:
82
83
84
85 $ cd ..
86 $ git standup -a spacewander -d 7
87
88 someProject/
89 4e19859 - fix getTotalSize return value error (6 days ago) <spacewander>
90 36da84e - fix rename over bound (7 days ago) <spacewander>
91 8e4182a - add watermark.png (7 days ago) <spacewander>
92 46fef1d - use tinyXML to configure (7 days ago) <spacewander>
93
94
95
97 Originally from https://github.com/kamranahmedse/git-standup
98
100 <https://github.com/tj/git-extras/issues>
101
103 <https://github.com/tj/git-extras>
104
105
106
107 October 2017 GIT-STANDUP(1)