Blob


1 .\"
2 .\" Copyright (c) 2018 Stefan Sperling
3 .\"
4 .\" Permission to use, copy, modify, and distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\"
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .Dd $Mdocdate$
17 .Dt TOG 1
18 .Os
19 .Sh NAME
20 .Nm tog
21 .Nd Git repository browser
22 .Sh SYNOPSIS
23 .Nm
24 .Ar command
25 .Op Fl h
26 .Op Ar arg ...
27 .Sh DESCRIPTION
28 .Nm
29 is an interactive read-only browser for Git repositories.
30 This repository format is described in
31 .Xr git-repository 5 .
32 .Pp
33 .Nm
34 supports several types of views which display repository data:
35 .Bl -tag -width Ds
36 .It Log view
37 Displays commits in the repository's history.
38 This view is displayed initially if no
39 .Ar command
40 is specified.
41 .It Diff view
42 Displays changes made in a particular commit.
43 .It Blame view
44 Displays the line-by-line history of a file.
45 .It Tree view
46 Displays the tree corresponding to a particular commit.
47 .El
48 .Pp
49 .Nm
50 provides global and command-specific key bindings and options.
51 The global key bindings are:
52 .Bl -tag -width Ds
53 .It Cm Q
54 Quit
55 .Nm .
56 .It Cm q
57 Quit the view which is in focus.
58 .It Cm Tab
59 Switch focus between views.
60 .It Cm f
61 Toggle fullscreen mode for a split-screen view.
62 .Nm
63 will automatically use split-screen views if the size of the terminal
64 window is sufficiently large.
65 .El
66 .Pp
67 Global options must precede the command name, and are as follows:
68 .Bl -tag -width tenletters
69 .It Fl h
70 Display usage information.
71 .It Fl V, -version
72 Display program version and exit immediately.
73 .El
74 .Pp
75 The commands for
76 .Nm
77 are as follows:
78 .Bl -tag -width blame
79 .It Cm log Oo Fl b Oc Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Op Ar path
80 Display history of a repository.
81 If a
82 .Ar path
83 is specified, show only commits which modified this path.
84 If invoked in a work tree, the
85 .Ar path
86 is interpreted relative to the current working directory,
87 and the work tree's path prefix is implicitly prepended.
88 Otherwise, the path is interpreted relative to the repository root.
89 .Pp
90 This command is also executed if no explicit command is specified.
91 .Pp
92 The key bindings for
93 .Cm tog log
94 are as follows:
95 .Bl -tag -width Ds
96 .It Cm Down-arrow, j, >, Full stop
97 Move the selection cursor down.
98 .It Cm Up-arrow, k, <, Comma
99 Move the selection cursor up.
100 .It Cm Page-down, Ctrl+f
101 Move the selection cursor down one page.
102 .It Cm Page-up, Ctrl+b
103 Move the selection cursor up one page.
104 .It Cm Enter, Space
105 Open a
106 .Cm diff
107 view showing file changes made in the currently selected commit.
108 .It Cm t
109 Open a
110 .Cm tree
111 view showing the tree for the currently selected commit.
112 .It Cm Backspace
113 Show log entries for the parent directory of the currently selected path,
114 unless an active search is in progress in which case
115 .Cm Backspace
116 aborts the search.
117 .It Cm /
118 Prompt for a search pattern and start searching for matching commits.
119 The search pattern is an extended regular expression which is matched
120 against a commit's author name, committer name, log message, and
121 commit ID SHA1 hash.
122 Regular expression syntax is documented in
123 .Xr re_format 7 .
124 .It Cm n
125 Find the next commit which matches the current search pattern.
126 Searching continues until either a match is found or the
127 .Cm Backspace
128 key is pressed.
129 .It Cm N
130 Find the previous commit which matches the current search pattern.
131 Searching continues until either a match is found or the
132 .Cm Backspace
133 key is pressed.
134 .It Cm Ctrl+l
135 Reload the log view with new commits found in the repository.
136 .It Cm B
137 Reload the log view and toggle display of merged commits.
138 The
139 .Fl b
140 option determines whether merged commits are displayed initially.
141 .El
142 .Pp
143 The options for
144 .Cm tog log
145 are as follows:
146 .Bl -tag -width Ds
147 .It Fl b
148 Display individual commits which were merged into the current branch
149 from other branches.
150 By default,
151 .Cm tog log
152 shows the linear history of the current branch only.
153 The
154 .Cm B
155 key binding can be used to toggle display of merged commits at run-time.
156 .It Fl c Ar commit
157 Start traversing history at the specified
158 .Ar commit .
159 The expected argument is the name of a branch or a commit ID SHA1 hash.
160 An abbreviated hash argument will be expanded to a full SHA1 hash
161 automatically, provided the abbreviation is unique.
162 If this option is not specified, default to the work tree's current branch
163 if invoked in a work tree, or to the repository's HEAD reference.
164 .It Fl r Ar repository-path
165 Use the repository at the specified path.
166 If not specified, assume the repository is located at or above the current
167 working directory.
168 .El
169 .It Cm diff Oo Ar repository-path Oc Ar object1 object2
170 Display the differences between two objects in the repository.
171 Each
172 .Ar object
173 argument is an object ID SHA1 hash.
174 An abbreviated hash argument will be expanded to a full SHA1 hash
175 automatically, provided the abbreviation is unique.
176 Both objects must be of the same type (blobs, trees, or commits).
177 If the
178 .Ar repository path
179 is omitted, use the current working directory.
180 .Pp
181 The key bindings for
182 .Cm tog diff
183 are as follows:
184 .Bl -tag -width Ds
185 .It Cm Down-arrow, j
186 Scroll down.
187 .It Cm Up-arrow, k
188 Scroll up.
189 .It Cm Page-down, Space, Ctrl+f
190 Scroll down one page.
191 .It Cm Page-up, Ctrl+b
192 Scroll up one page.
193 .It Cm \&[
194 Reduce the amount of diff context lines.
195 .It Cm \&]
196 Increase the amount of diff context lines.
197 .It Cm <, Comma
198 If the diff view was opened via the log view, move to the previous (younger)
199 commit.
200 .It Cm >, Full stop
201 If the diff view was opened via the log view, move to the next (older) commit.
202 .It Cm /
203 Prompt for a search pattern and start searching for matching line.
204 The search pattern is an extended regular expression.
205 Regular expression syntax is documented in
206 .Xr re_format 7 .
207 .It Cm n
208 Find the next line which matches the current search pattern.
209 .It Cm N
210 Find the previous line which matches the current search pattern.
211 .El
212 .It Cm blame Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Ar path
213 Display line-by-line history of a file at the specified path.
214 .Pp
215 The key bindings for
216 .Cm tog blame
217 are as follows:
218 .Bl -tag -width Ds
219 .It Cm Down-arrow, j
220 Move the selection cursor down.
221 .It Cm Up-arrow, k
222 Move the selection cursor up.
223 .It Cm Page-down, Space, Ctrl+f
224 Move the selection cursor down one page.
225 .It Cm Page-up, Ctrl+b
226 Move the selection cursor up one page.
227 .It Cm Enter
228 Open a
229 .Cm diff
230 view for the currently selected line's commit.
231 .It Cm b
232 Reload the
233 .Cm blame
234 view with the version of the file as found in the currently
235 selected line's commit.
236 .It Cm p
237 Reload the
238 .Cm blame
239 view with the version of the file as found in the parent commit of the
240 currently selected line's commit.
241 .It Cm B
242 Reload the
243 .Cm blame
244 view with the previously blamed commit.
245 .It Cm /
246 Prompt for a search pattern and start searching for matching line.
247 The search pattern is an extended regular expression.
248 Regular expression syntax is documented in
249 .Xr re_format 7 .
250 .It Cm n
251 Find the next line which matches the current search pattern.
252 .It Cm N
253 Find the previous line which matches the current search pattern.
254 .El
255 .Pp
256 The options for
257 .Cm tog blame
258 are as follows:
259 .Bl -tag -width Ds
260 .It Fl c Ar commit
261 Start traversing history at the specified
262 .Ar commit .
263 The expected argument is the name of a branch or a commit ID SHA1 hash.
264 An abbreviated hash argument will be expanded to a full SHA1 hash
265 automatically, provided the abbreviation is unique.
266 .It Fl r Ar repository-path
267 Use the repository at the specified path.
268 If not specified, assume the repository is located at or above the current
269 working directory.
270 .El
271 .It Cm tree Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Op Ar path
272 Display the repository tree.
273 If a
274 .Ar path
275 is specified, show tree entries at this path.
276 .Pp
277 Displayed tree entries may carry one of the following trailing annotations:
278 .Bl -column YXZ description
279 .It @ Ta entry is a symbolic link
280 .It / Ta entry is a directory
281 .It * Ta entry is an executable file
282 .It $ Ta entry is a Git submodule
283 .El
284 .Pp
285 The key bindings for
286 .Cm tog tree
287 are as follows:
288 .Bl -tag -width Ds
289 .It Cm Down-arrow, j
290 Move the selection cursor down.
291 .It Cm Up-arrow, k
292 Move the selection cursor up.
293 .It Cm Page-down, Ctrl+f
294 Move the selection cursor down one page.
295 .It Cm Page-up, Ctrl+b
296 Move the selection cursor up one page.
297 .It Cm Enter
298 Enter the currently selected directory, or switch to the
299 .Cm blame
300 view for the currently selected file.
301 .It Cm l
302 Open a
303 .Cm log
304 view for the currently selected tree entry.
305 .It Cm Backspace
306 Move back to the parent directory.
307 .It Cm i
308 Show object IDs for all objects displayed in the
309 .Cm tree
310 view.
311 .It Cm /
312 Prompt for a search pattern and start searching for matching tree entries.
313 The search pattern is an extended regular expression which is matched
314 against the tree entry's name.
315 Regular expression syntax is documented in
316 .Xr re_format 7 .
317 .It Cm n
318 Find the next tree entry which matches the current search pattern.
319 .It Cm N
320 Find the previous tree entry which matches the current search pattern.
321 .El
322 .Pp
323 The options for
324 .Cm tog tree
325 are as follows:
326 .Bl -tag -width Ds
327 .It Fl c Ar commit
328 Start traversing history at the specified
329 .Ar commit .
330 The expected argument is the name of a branch or a commit ID SHA1 hash.
331 An abbreviated hash argument will be expanded to a full SHA1 hash
332 automatically, provided the abbreviation is unique.
333 .It Fl r Ar repository-path
334 Use the repository at the specified path.
335 If not specified, assume the repository is located at or above the current
336 working directory.
337 If this directory is a
338 .Xr got 1
339 work tree, use the repository path associated with this work tree.
340 .El
341 .El
342 .Sh ENVIRONMENT
343 .Bl -tag -width TOG_COLORS
344 .It Ev TOG_COLORS
345 .Nm
346 shows colorized output if this variable is set to a non-empty value.
347 The default color scheme can be modified by setting the environment
348 variables documented below.
349 The colors available in color schemes are
350 .Dq black ,
351 .Dq red ,
352 .Dq green ,
353 .Dq yellow ,
354 .Dq blue ,
355 .Dq megenta ,
356 .Dq cyan ,
357 and
358 .Dq default
359 which maps to the terminal's default foreground color.
360 .It Ev TOG_COLOR_DIFF_MINUS
361 The color used to mark up removed lines in diffs.
362 If not set, the default value
363 .Dq magenta
364 is used.
365 .It Ev TOG_COLOR_DIFF_PLUS
366 The color used to mark up added lines in diffs.
367 If not set, the default value
368 .Dq cyan
369 is used.
370 .It Ev TOG_COLOR_DIFF_CHUNK_HEADER
371 The color used to mark up chunk header lines in diffs.
372 If not set, the default value
373 .Dq yellow
374 is used.
375 .It Ev TOG_COLOR_DIFF_META
376 The color used to mark up meta data in diffs.
377 If not set, the default value
378 .Dq green
379 is used.
380 .It Ev TOG_COLOR_TREE_SUBMODULE
381 The color used to mark up sobmodules tree entries.
382 If not set, the default value
383 .Dq magenta
384 is used.
385 .It Ev TOG_COLOR_TREE_SYMLINK
386 The color used to mark up symbolic link tree entries.
387 If not set, the default value
388 .Dq magenta
389 is used.
390 .It Ev TOG_COLOR_TREE_DIRECTORY
391 The color used to mark up directory tree entries.
392 If not set, the default value
393 .Dq cyan
394 is used.
395 .It Ev TOG_COLOR_TREE_EXECUTABLE
396 The color used to mark up executable file tree entries.
397 If not set, the default value
398 .Dq green
399 is used.
400 .It Ev TOG_COLOR_COMMIT
401 The color used to mark up commit IDs.
402 If not set, the default value
403 .Dq green
404 is used.
405 .It Ev TOG_COLOR_AUTHOR
406 The color used to mark up author information.
407 If not set, the default value
408 .Dq cyan
409 is used.
410 .It Ev TOG_COLOR_DATE
411 The color used to mark up date information.
412 If not set, the default value
413 .Dq yellow
414 is used.
415 .El
416 .Sh EXIT STATUS
417 .Ex -std tog
418 .Sh SEE ALSO
419 .Xr got 1 ,
420 .Xr git-repository 5 ,
421 .Xr re_format 7
422 .Sh AUTHORS
423 .An Stefan Sperling Aq Mt stsp@openbsd.org
424 .An Joshua Stein Aq Mt jcs@openbsd.org