1GIT-STANDUP(1)                    Git Extras                    GIT-STANDUP(1)
2
3
4

NAME

6       git-standup - Recall the commit history
7

SYNOPSIS

9       git-standup  [-a author] [-m depth] [-d days ago] [-D date format] [-g]
10       [-L] [-f] [-B] [-n number of commits]
11       git-standup -h
12

DESCRIPTION

14       Recall what you did on the last working day ..or be nosy and find  what
15       someone else did.
16

OPTIONS

18       -a author
19
20       The  author  of  commits. Use "all" means specifying "all authors". De‐
21       faults to $(git config user.name).
22
23       -m depth
24
25       The depth of recursive directory search. Defaults to 1.
26
27       -L
28
29       Enable the inclusion of symbolic links in recursive directory search.
30
31       -d 1
32
33       The start of commit history. Defaults to 1, means "1 days ago".
34
35       -D relative
36
37       The date format displayed in commit history. Defaults to "relative".
38
39       -h
40
41       Display help message.
42
43       -g
44
45       Display if commit is GPG signed (G) or not (N) in commit message.
46
47       -f
48
49       Fetch the latest commits before showing commit history.
50
51       The former version of git standup accepted <author> <since> <until>  as
52       options. This interface is deprecated now, and please avoid to use it!
53
54       -B
55
56       Display the commits in branch groups.
57
58       -n number-of-commits
59
60       Limit  the number of commits displayed per group. By default, the limi‐
61       tation is applied in the repository level. For example, if you  have  3
62       repositories  under  the  current  directory, git standup ... -n 1 will
63       show you 3 commits at most. When -B is specific, the limitation is  ap‐
64       plied in the branch level. For instance, if each of your 3 repositories
65       have 2 branches, git standup ... -B -n 1  will  display  6  commits  at
66       most.
67

EXAMPLES

69       This shows your commits since yesterday:
70
71
72           $ git standup
73
74           a26d1f9 - add profile hook (69 minutes ago) <spacewander>
75
76
77
78       This shows the author´s commits since last week:
79
80
81           $ git standup -a spacewander -d 7
82
83           a26d1f9 - add profile hook (70 minutes ago) <spacewander>
84           4e19859 - fix getTotalSize return value error (6 days ago) <spacewander>
85           36da84e - fix rename over bound (7 days ago) <spacewander>
86           8e4182a - add watermark.png (7 days ago) <spacewander>
87           46fef1d - use tinyXML to configure (7 days ago) <spacewander>
88
89
90
91       If  current  directory  is  not a git repo, git-standup will fetch data
92       from all top-level git repos under it:
93
94
95           $ cd ..
96           $ git standup -a spacewander -d 7
97
98           someProject/
99           4e19859 - fix getTotalSize return value error (6 days ago) <spacewander>
100           36da84e - fix rename over bound (7 days ago) <spacewander>
101           8e4182a - add watermark.png (7 days ago) <spacewander>
102           46fef1d - use tinyXML to configure (7 days ago) <spacewander>
103
104
105
106       By specifying the -B option, git-standuo  will  group  the  commits  in
107       branches:
108
109
110           $ git standup -B -a spacewander -d 7
111
112           git-summary-cleanup
113           f788c78 - git-summary: clean up other shellcheck warnings (23 hours ago) <spacewander>
114           3e8c3ab - git-summary: fix incorrect active days when commits range is given (23 hours ago) <spacewander>
115           ff991ac - git-summary: remove useless result function. (23 hours ago) <spacewander>
116           203f5b4 - git-summary: add --dedup-by-email to remove duplicate users (5 days ago) <spacewander>
117
118           master
119           203f5b4 - git-summary: add --dedup-by-email to remove duplicate users (5 days ago) <spacewander>
120
121
122
123       Note that the same commit can be seen in different branches.
124

AUTHOR

126       Originally from https://github.com/kamranahmedse/git-standup
127

REPORTING BUGS

129       <https://github.com/tj/git-extras/issues>
130

SEE ALSO

132       <https://github.com/tj/git-extras>
133
134
135
136                                  August 2021                   GIT-STANDUP(1)
Impressum