Blob


1 .\"
2 .\" Copyright (c) 2017 Martin Pieuchot
3 .\" Copyright (c) 2018, 2019, 2020 Stefan Sperling
4 .\"
5 .\" Permission to use, copy, modify, and distribute this software for any
6 .\" purpose with or without fee is hereby granted, provided that the above
7 .\" copyright notice and this permission notice appear in all copies.
8 .\"
9 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 .\"
17 .Dd $Mdocdate$
18 .Dt GOT 1
19 .Os
20 .Sh NAME
21 .Nm got
22 .Nd Game of Trees
23 .Sh SYNOPSIS
24 .Nm
25 .Ar command
26 .Op Fl h
27 .Op Ar arg ...
28 .Sh DESCRIPTION
29 .Nm
30 is a version control system which stores the history of tracked files
31 in a Git repository, as used by the Git version control system.
32 This repository format is described in
33 .Xr git-repository 5 .
34 .Pp
35 .Nm
36 is a
37 .Dq distributed
38 version control system because every copy of a repository is writeable.
39 Modifications made to files can be synchronized between repositories
40 at any time.
41 .Pp
42 Files managed by
43 .Nm
44 must be checked out from the repository for modification.
45 Checked out files are stored in a
46 .Em work tree
47 which can be placed at an arbitrary directory in the filesystem hierarchy.
48 The on-disk format of this work tree is described in
49 .Xr got-worktree 5 .
50 .Pp
51 .Nm
52 provides global and command-specific options.
53 Global options must precede the command name, and are as follows:
54 .Bl -tag -width tenletters
55 .It Fl h
56 Display usage information and exit immediately.
57 .It Fl V, -version
58 Display program version and exit immediately.
59 .El
60 .Pp
61 The commands for
62 .Nm
63 are as follows:
64 .Bl -tag -width checkout
65 .It Cm init Ar repository-path
66 Create a new empty repository at the specified
67 .Ar repository-path .
68 .Pp
69 After
70 .Cm got init ,
71 the
72 .Cm got import
73 command must be used to populate the empty repository before
74 .Cm got checkout
75 can be used.
76 .It Cm in
77 Short alias for
78 .Cm init .
79 .It Cm import Oo Fl b Ar branch Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl I Ar pattern Oc Ar directory
80 Create an initial commit in a repository from the file hierarchy
81 within the specified
82 .Ar directory .
83 The created commit will not have any parent commits, i.e. it will be a
84 root commit.
85 Also create a new reference which provides a branch name for the newly
86 created commit.
87 Show the path of each imported file to indicate progress.
88 .Pp
89 The
90 .Cm got import
91 command requires the
92 .Ev GOT_AUTHOR
93 environment variable to be set,
94 unless Git's
95 .Dv user.name
96 and
97 .Dv user.email
98 configuration settings can be obtained from the repository's
99 .Pa .git/config
100 file or from Git's global
101 .Pa ~/.gitconfig
102 configuration file.
103 .Pp
104 The options for
105 .Cm got import
106 are as follows:
107 .Bl -tag -width Ds
108 .It Fl b Ar branch
109 Create the specified
110 .Ar branch
111 instead of creating the default branch
112 .Dq main .
113 Use of this option is required if the
114 .Dq main
115 branch already exists.
116 .It Fl m Ar message
117 Use the specified log message when creating the new commit.
118 Without the
119 .Fl m
120 option,
121 .Cm got import
122 opens a temporary file in an editor where a log message can be written.
123 .It Fl r Ar repository-path
124 Use the repository at the specified path.
125 If not specified, assume the repository is located at or above the current
126 working directory.
127 .It Fl I Ar pattern
128 Ignore files or directories with a name which matches the specified
129 .Ar pattern .
130 This option may be specified multiple times to build a list of ignore patterns.
131 The
132 .Ar pattern
133 follows the globbing rules documented in
134 .Xr glob 7 .
135 .El
136 .It Cm im
137 Short alias for
138 .Cm import .
139 .It Cm clone Oo Fl a Oc Oo Fl b Ar branch Oc Oo Fl l Oc Oo Fl m Oc Oo Fl q Oc Oo Fl v Oc Oo Fl R Ar reference Oc Ar repository-URL Op Ar directory
140 Clone a Git repository at the specified
141 .Ar repository-URL
142 into the specified
143 .Ar directory .
144 If no
145 .Ar directory
146 is specified the directory name will be derived from the name of the
147 cloned repository.
148 .Cm got clone
149 will refuse to run if the
150 .Ar directory
151 already exists.
152 .Pp
153 The
154 .Ar repository-URL
155 specifies a protocol scheme, a server hostname, an optional port number
156 separated from the hostname by a colon, and a path to the repository on
157 the server:
158 .Lk scheme://hostname:port/path/to/repository
159 .Pp
160 The following protocol schemes are supported:
161 .Bl -tag -width git+ssh
162 .It git
163 The Git protocol as implemented by the
164 .Xr git-daemon 1
165 server.
166 Use of this protocol is discouraged since it supports neither authentication
167 nor encryption.
168 .It git+ssh
169 The Git protocol wrapped in an authenticated and encrypted
170 .Xr ssh 1
171 tunnel.
172 With this protocol the hostname may contain an embedded username for
173 .Xr ssh 1
174 to use:
175 .Mt user@hostname
176 .It ssh
177 Short alias for git+ssh.
178 .El
179 .Pp
180 Objects in the cloned repository are stored in a pack file which is downloaded
181 from the server.
182 This pack file will then be indexed to facilitate access to the objects stored
183 within.
184 If any objects in the pack file are stored in deltified form, all deltas will
185 be fully resolved in order to compute the ID of such objects.
186 This can take some time.
187 More details about the pack file format are documented in
188 .Xr git-repository 5 .
189 .Pp
190 .Cm got clone
191 creates a remote repository entry in the
192 .Pa config
193 file of the cloned repository to store the
194 .Ar repository-url
195 for future use by
196 .Cm got fetch
197 or
198 .Xr git-fetch 1 .
199 .Pp
200 The options for
201 .Cm got clone
202 are as follows:
203 .Bl -tag -width Ds
204 .It Fl a
205 Fetch all branches from the remote repository's
206 .Dq refs/heads/
207 reference namespace.
208 If this option is not specified, a branch resolved via the remote
209 repository's HEAD reference will be fetched.
210 Cannot be used together with the
211 .Fl b
212 option.
213 .It Fl b Ar branch
214 Fetch the specified
215 .Ar branch
216 from the remote repository's
217 .Dq refs/heads/
218 reference namespace.
219 This option may be specified multiple times to build a list of branches
220 to fetch.
221 If the branch corresponding to the remote repository's HEAD reference is not
222 in this list, the cloned repository's HEAD reference will be set to the first
223 branch which was fetched.
224 If this option is not specified, a branch resolved via the remote
225 repository's HEAD reference will be fetched.
226 Cannot be used together with the
227 .Fl a
228 option.
229 .It Fl l
230 List branches and tags available for fetching from the remote repository
231 and exit immediately.
232 Cannot be used together with any of the other options except
233 .Fl v .
234 .It Fl m
235 Create the cloned repository as a mirror of the original repository.
236 This is useful if the cloned repository will not be used to store
237 locally created commits.
238 .Pp
239 The repository's
240 .Pa config
241 file will be set up with the
242 .Dq mirror
243 option enabled, such that
244 .Cm got fetch
245 or
246 .Xr git-fetch 1
247 will write incoming changes directly to branches in the
248 .Dq refs/heads/
249 reference namespace, rather than to branches in the
250 .Dq refs/remotes/
251 namespace.
252 This avoids the usual requirement of having to run
253 .Cm got rebase
254 after
255 .Cm got fetch
256 in order to make incoming changes appear on branches in the
257 .Dq refs/heads/
258 namespace.
259 But maintaining custom changes in the cloned repository becomes difficult
260 since such changes will be at risk of being discarded whenever incoming
261 changes are fetched.
262 .It Fl q
263 Suppress progress reporting output.
264 The same option will be passed to
265 .Xr ssh 1
266 if applicable.
267 .It Fl v
268 Verbose mode.
269 Causes
270 .Cm got clone
271 to print debugging messages to standard error output.
272 This option will be passed to
273 .Xr ssh 1
274 if applicable.
275 Multiple -v options increase the verbosity.
276 The maximum is 3.
277 .It Fl R Ar reference
278 In addition to the branches and tags that will be fetched, fetch an arbitrary
279 .Ar reference
280 from the remote repository's
281 .Dq refs/
282 namespace.
283 This option may be specified multiple times to build a list of additional
284 references to fetch.
285 The specified
286 .Ar reference
287 may either be a path to a specific reference, or a reference namespace
288 which will cause all references in this namespace to be fetched.
289 .Pp
290 Each reference will be mapped into the cloned repository's
291 .Dq refs/remotes/
292 namespace, unless the
293 .Fl m
294 option is used to mirror references directly into the cloned repository's
295 .Dq refs/
296 namespace.
297 .Pp
298 .Cm got clone
299 will refuse to fetch references from the remote repository's
300 .Dq refs/remotes/
301 or
302 .Dq refs/got/
303 namespace.
304 .El
305 .It Cm cl
306 Short alias for
307 .Cm clone .
308 .It Cm fetch Oo Fl a Oc Oo Fl b Ar branch Oc Oo Fl d Oc Oo Fl l Oc Oo Fl r Ar repository-path Oc Oo Fl t Oc Oo Fl q Oc Oo Fl v Oc Oo Fl R Ar reference Oc Op Ar remote-repository
309 Fetch new changes from a remote repository.
310 If no
311 .Ar remote-repository
312 is specified,
313 .Dq origin
314 will be used.
315 The remote repository's URL is obtained from the corresponding entry in the
316 .Pa config
317 file of the local repository, as created by
318 .Cm got clone .
319 .Pp
320 New changes will be stored in a separate pack file downloaded from the server.
321 Optionally, separate pack files stored in the repository can be combined with
322 .Xr git-repack 1 .
323 .Pp
324 By default, branch references in the
325 .Dq refs/remotes/
326 reference namespace will be updated to point at the newly fetched commits.
327 The
328 .Cm got rebase
329 command can then be used to make new changes visible on branches in the
330 .Dq refs/heads/
331 namespace, merging incoming changes with the changes on those branches
332 as necessary.
333 .Pp
334 If the repository was created as a mirror with
335 .Cm got clone -m
336 then all branches in the
337 .Dq refs/heads/
338 namespace will be updated directly to match the corresponding branches in
339 the remote repository.
340 If those branches contained local commits, these commits will no longer be
341 reachable via a reference and will therefore be at risk of being discarded
342 by Git's garbage collector.
343 Maintaining custom changes in a mirror repository is therefore discouraged.
344 .Pp
345 In any case, references in the
346 .Dq refs/tags/
347 namespace will always be fetched and mapped directly to local references
348 in the same namespace.
349 .Pp
350 The options for
351 .Cm got fetch
352 are as follows:
353 .Bl -tag -width Ds
354 .It Fl a
355 Fetch all branches from the remote repository's
356 .Dq refs/heads/
357 reference namespace.
358 If this option is not specified, a branch resolved via the remote
359 repository's HEAD reference will be fetched.
360 Cannot be used together with the
361 .Fl b
362 option.
363 .It Fl b Ar branch
364 Fetch the specified
365 .Ar branch
366 from the remote repository's
367 .Dq refs/heads/
368 reference namespace.
369 This option may be specified multiple times to build a list of branches
370 to fetch.
371 If this option is not specified, a branch resolved via the remote
372 repository's HEAD reference will be fetched.
373 Cannot be used together with the
374 .Fl a
375 option.
376 .It Fl d
377 Delete branches and tags from the local repository which are no longer
378 present in the remote repository.
379 Only references are deleted.
380 Any commit, tree, tag, and blob objects belonging to deleted branches or
381 tags remain in the repository and may be removed separately with
382 Git's garbage collector.
383 .It Fl l
384 List branches and tags available for fetching from the remote repository
385 and exit immediately.
386 Cannot be used together with any of the other options except
387 .Fl v
388 and
389 .Fl r .
390 .It Fl t
391 Allow existing references in the
392 .Dq refs/tags
393 namespace to be updated if they have changed on the server.
394 If not specified, only new tag references will be created.
395 .It Fl r Ar repository-path
396 Use the repository at the specified path.
397 If not specified, assume the repository is located at or above the current
398 working directory.
399 If this directory is a
400 .Nm
401 work tree, use the repository path associated with this work tree.
402 .It Fl q
403 Suppress progress reporting output.
404 The same option will be passed to
405 .Xr ssh 1
406 if applicable.
407 .It Fl v
408 Verbose mode.
409 Causes
410 .Cm got fetch
411 to print debugging messages to standard error output.
412 The same option will be passed to
413 .Xr ssh 1
414 if applicable.
415 Multiple -v options increase the verbosity.
416 The maximum is 3.
417 .It Fl R Ar reference
418 In addition to the branches and tags that will be fetched, fetch an arbitrary
419 .Ar reference
420 from the remote repository's
421 .Dq refs/
422 namespace.
423 This option may be specified multiple times to build a list of additional
424 references to fetch.
425 The specified
426 .Ar reference
427 may either be a path to a specific reference, or a reference namespace
428 which will cause all references in this namespace to be fetched.
429 .Pp
430 Each reference will be mapped into the local repository's
431 .Dq refs/remotes/
432 namespace, unless the local repository was created as a mirror with
433 .Cm got clone -m
434 in which case references will be mapped directly into the local repository's
435 .Dq refs/
436 namespace.
437 .Pp
438 Once a reference has been fetched, a branch based on it can be created with
439 .Cm got branch
440 if needed.
441 .Pp
442 .Cm got fetch
443 will refuse to fetch references from the remote repository's
444 .Dq refs/remotes/
445 or
446 .Dq refs/got/
447 namespace.
448 .El
449 .It Cm fe
450 Short alias for
451 .Cm fetch .
452 .It Cm checkout Oo Fl E Oc Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Oo Fl p Ar path-prefix Oc Ar repository-path Op Ar work-tree-path
453 Copy files from a repository into a new work tree.
454 Show the status of each affected file, using the following status codes:
455 .Bl -column YXZ description
456 .It A Ta new file was added
457 .It E Ta file already exists in work tree's meta-data
458 .El
459 .Pp
460 If the
461 .Ar work tree path
462 is not specified, either use the last component of
463 .Ar repository path ,
464 or if a
465 .Ar path prefix
466 was specified use the last component of
467 .Ar path prefix .
468 .Pp
469 The options for
470 .Cm got checkout
471 are as follows:
472 .Bl -tag -width Ds
473 .It Fl E
474 Proceed with the checkout operation even if the directory at
475 .Ar work-tree-path
476 is not empty.
477 Existing files will be left intact.
478 .It Fl b Ar branch
479 Check out files from a commit on the specified
480 .Ar branch .
481 If this option is not specified, a branch resolved via the repository's HEAD
482 reference will be used.
483 .It Fl c Ar commit
484 Check out files from the specified
485 .Ar commit
486 on the selected branch.
487 The expected argument is a commit ID SHA1 hash or an existing reference
488 or tag name which will be resolved to a commit ID.
489 An abbreviated hash argument will be expanded to a full SHA1 hash
490 automatically, provided the abbreviation is unique.
491 If this option is not specified, the most recent commit on the selected
492 branch will be used.
493 .Pp
494 If the specified
495 .Ar commit
496 is not contained in the selected branch, a different branch which contains
497 this commit must be specified with the
498 .Fl b
499 option.
500 If no such branch is known a new branch must be created for this
501 commit with
502 .Cm got branch
503 before
504 .Cm got checkout
505 can be used.
506 Checking out work trees with an unknown branch is intentionally not supported.
507 .It Fl p Ar path-prefix
508 Restrict the work tree to a subset of the repository's tree hierarchy.
509 Only files beneath the specified
510 .Ar path-prefix
511 will be checked out.
512 .El
513 .It Cm co
514 Short alias for
515 .Cm checkout .
516 .It Cm update Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Op Ar path ...
517 Update an existing work tree to a different
518 .Ar commit .
519 Change existing files in the work tree as necessary to match file contents
520 of this commit.
521 Preserve any local changes in the work tree and merge them with the
522 incoming changes.
523 .Pp
524 Files which already contain merge conflicts will not be updated to avoid
525 further complications.
526 Such files will be updated when
527 .Cm got update
528 is run again after merge conflicts have been resolved.
529 If the conflicting changes are no longer needed affected files can be
530 reverted with
531 .Cm got revert
532 before running
533 .Cm got update
534 again.
535 .Pp
536 Show the status of each affected file, using the following status codes:
537 .Bl -column YXZ description
538 .It U Ta file was updated and contained no local changes
539 .It G Ta file was updated and local changes were merged cleanly
540 .It C Ta file was updated and conflicts occurred during merge
541 .It D Ta file was deleted
542 .It A Ta new file was added
543 .It \(a~ Ta versioned file is obstructed by a non-regular file
544 .It ! Ta a missing versioned file was restored
545 .It # Ta file was not updated because it contains merge conflicts
546 .El
547 .Pp
548 If no
549 .Ar path
550 is specified, update the entire work tree.
551 Otherwise, restrict the update operation to files at or within the
552 specified paths.
553 Each path is required to exist in the update operation's target commit.
554 Files in the work tree outside specified paths will remain unchanged and
555 will retain their previously recorded base commit.
556 Some
557 .Nm
558 commands may refuse to run while the work tree contains files from
559 multiple base commits.
560 The base commit of such a work tree can be made consistent by running
561 .Cm got update
562 across the entire work tree.
563 Specifying a
564 .Ar path
565 is incompatible with the
566 .Fl b
567 option.
568 .Pp
569 .Cm got update
570 cannot update paths with staged changes.
571 If changes have been staged with
572 .Cm got stage ,
573 these changes must first be committed with
574 .Cm got commit
575 or unstaged with
576 .Cm got unstage .
577 .Pp
578 The options for
579 .Cm got update
580 are as follows:
581 .Bl -tag -width Ds
582 .It Fl b Ar branch
583 Switch the work tree's branch reference to the specified
584 .Ar branch
585 before updating the work tree.
586 This option requires that all paths in the work tree are updated.
587 .Pp
588 As usual, any local changes in the work tree will be preserved.
589 This can be useful when switching to a newly created branch in order
590 to commit existing local changes to this branch.
591 .Pp
592 Any local changes must be dealt with separately in order to obtain a
593 work tree with pristine file contents corresponding exactly to the specified
594 .Ar branch .
595 Such changes could first be committed to a different branch with
596 .Cm got commit ,
597 or could be discarded with
598 .Cm got revert .
599 .It Fl c Ar commit
600 Update the work tree to the specified
601 .Ar commit .
602 The expected argument is a commit ID SHA1 hash or an existing reference
603 or tag name which will be resolved to a commit ID.
604 An abbreviated hash argument will be expanded to a full SHA1 hash
605 automatically, provided the abbreviation is unique.
606 If this option is not specified, the most recent commit on the work tree's
607 branch will be used.
608 .El
609 .It Cm up
610 Short alias for
611 .Cm update .
612 .It Cm status Op Ar path ...
613 Show the current modification status of files in a work tree,
614 using the following status codes:
615 .Bl -column YXZ description
616 .It M Ta modified file
617 .It A Ta file scheduled for addition in next commit
618 .It D Ta file scheduled for deletion in next commit
619 .It C Ta modified or added file which contains merge conflicts
620 .It ! Ta versioned file was expected on disk but is missing
621 .It \(a~ Ta versioned file is obstructed by a non-regular file
622 .It ? Ta unversioned item not tracked by
623 .Nm
624 .It m Ta modified file modes (executable bit only)
625 .It N Ta non-existent
626 .Ar path
627 specified on the command line
628 .El
629 .Pp
630 If no
631 .Ar path
632 is specified, show modifications in the entire work tree.
633 Otherwise, show modifications at or within the specified paths.
634 .Pp
635 If changes have been staged with
636 .Cm got stage ,
637 staged changes are shown in the second output column, using the following
638 status codes:
639 .Bl -column YXZ description
640 .It M Ta file modification is staged
641 .It A Ta file addition is staged
642 .It D Ta file deletion is staged
643 .El
644 .Pp
645 Changes created on top of staged changes are indicated in the first column:
646 .Bl -column YXZ description
647 .It MM Ta file was modified after earlier changes have been staged
648 .It MA Ta file was modified after having been staged for addition
649 .El
650 .Pp
651 For compatibility with
652 .Xr cvs 1
653 and
654 .Xr git 1 ,
655 .Cm got status
656 reads
657 .Xr glob 7
658 patterns from
659 .Pa .cvsignore
660 and
661 .Pa .gitignore
662 files in each traversed directory and will not display unversioned files
663 which match these patterns.
664 As an extension to
665 .Xr glob 7
666 matching rules,
667 .Cm got status
668 supports consecutive asterisks,
669 .Dq ** ,
670 which will match an arbitrary amount of directories.
671 Unlike
672 .Xr cvs 1 ,
673 .Cm got status
674 only supports a single ignore pattern per line.
675 Unlike
676 .Xr git 1 ,
677 .Cm got status
678 does not support negated ignore patterns prefixed with
679 .Dq \&! ,
680 and gives no special significance to the location of path component separators,
681 .Dq / ,
682 in a pattern.
683 .It Cm st
684 Short alias for
685 .Cm status .
686 .It Cm log Oo Fl b Oc Oo Fl c Ar commit Oc Oo Fl C Ar number Oc Oo Fl l Ar N Oc Oo Fl p Oc Oo Fl s Ar search-pattern Oc Oo Fl r Ar repository-path Oc Oo Fl R Oc Oo Fl x Ar commit Oc Op Ar path
687 Display history of a repository.
688 If a
689 .Ar path
690 is specified, show only commits which modified this path.
691 If invoked in a work tree, the
692 .Ar path
693 is interpreted relative to the current working directory,
694 and the work tree's path prefix is implicitly prepended.
695 Otherwise, the path is interpreted relative to the repository root.
696 .Pp
697 The options for
698 .Cm got log
699 are as follows:
700 .Bl -tag -width Ds
701 .It Fl b
702 Display individual commits which were merged into the current branch
703 from other branches.
704 By default,
705 .Cm got log
706 shows the linear history of the current branch only.
707 .It Fl c Ar commit
708 Start traversing history at the specified
709 .Ar commit .
710 The expected argument is a commit ID SHA1 hash or an existing reference
711 or tag name which will be resolved to a commit ID.
712 An abbreviated hash argument will be expanded to a full SHA1 hash
713 automatically, provided the abbreviation is unique.
714 If this option is not specified, default to the work tree's current branch
715 if invoked in a work tree, or to the repository's HEAD reference.
716 .It Fl C Ar number
717 Set the number of context lines shown in diffs with
718 .Fl p .
719 By default, 3 lines of context are shown.
720 .It Fl l Ar N
721 Limit history traversal to a given number of commits.
722 If this option is not specified, a default limit value of zero is used,
723 which is treated as an unbounded limit.
724 The
725 .Ev GOT_LOG_DEFAULT_LIMIT
726 environment variable may be set to change this default value.
727 .It Fl p
728 Display the patch of modifications made in each commit.
729 If a
730 .Ar path
731 is specified, only show the patch of modifications at or within this path.
732 .It Fl s Ar search-pattern
733 If specified, show only commits with a log message matched by the extended
734 regular expression
735 .Ar search-pattern .
736 Regular expression syntax is documented in
737 .Xr re_format 7 .
738 .It Fl r Ar repository-path
739 Use the repository at the specified path.
740 If not specified, assume the repository is located at or above the current
741 working directory.
742 If this directory is a
743 .Nm
744 work tree, use the repository path associated with this work tree.
745 .It Fl R
746 Determine a set of commits to display as usual, but display these commits
747 in reverse order.
748 .It Fl x Ar commit
749 Stop traversing commit history as soon as the specified
750 .Ar commit
751 has been traversed.
752 This option has no effect if the specified
753 .Ar commit
754 is never traversed.
755 .El
756 .It Cm diff Oo Fl C Ar number Oc Oo Fl r Ar repository-path Oc Oo Fl s Oc Oo Fl w Oc Op Ar object1 Ar object2 | Ar path
757 When invoked within a work tree with less than two arguments, display
758 local changes in the work tree.
759 If a
760 .Ar path
761 is specified, only show changes within this path.
762 .Pp
763 If two arguments are provided, treat each argument as a reference, a tag
764 name, or an object ID SHA1 hash, and display differences between the
765 corresponding objects.
766 Both objects must be of the same type (blobs, trees, or commits).
767 An abbreviated hash argument will be expanded to a full SHA1 hash
768 automatically, provided the abbreviation is unique.
769 .Pp
770 The options for
771 .Cm got diff
772 are as follows:
773 .Bl -tag -width Ds
774 .It Fl C Ar number
775 Set the number of context lines shown in the diff.
776 By default, 3 lines of context are shown.
777 .It Fl r Ar repository-path
778 Use the repository at the specified path.
779 If not specified, assume the repository is located at or above the current
780 working directory.
781 If this directory is a
782 .Nm
783 work tree, use the repository path associated with this work tree.
784 .It Fl s
785 Show changes staged with
786 .Cm got stage
787 instead of showing local changes in the work tree.
788 This option is only valid when
789 .Cm got diff
790 is invoked in a work tree.
791 .It Fl w
792 Ignore whitespace-only changes.
793 .El
794 .It Cm di
795 Short alias for
796 .Cm diff .
797 .It Cm blame Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Ar path
798 Display line-by-line history of a file at the specified path.
799 .Pp
800 The options for
801 .Cm got blame
802 are as follows:
803 .Bl -tag -width Ds
804 .It Fl c Ar commit
805 Start traversing history at the specified
806 .Ar commit .
807 The expected argument is a commit ID SHA1 hash or an existing reference
808 or tag name which will be resolved to a commit ID.
809 An abbreviated hash argument will be expanded to a full SHA1 hash
810 automatically, provided the abbreviation is unique.
811 .It Fl r Ar repository-path
812 Use the repository at the specified path.
813 If not specified, assume the repository is located at or above the current
814 working directory.
815 If this directory is a
816 .Nm
817 work tree, use the repository path associated with this work tree.
818 .El
819 .It Cm bl
820 Short alias for
821 .Cm blame .
822 .It Cm tree Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl i Oc Oo Fl R Oc Op Ar path
823 Display a listing of files and directories at the specified
824 directory path in the repository.
825 Entries shown in this listing may carry one of the following trailing
826 annotations:
827 .Bl -column YXZ description
828 .It @ Ta entry is a symbolic link
829 .It / Ta entry is a directory
830 .It * Ta entry is an executable file
831 .It $ Ta entry is a Git submodule
832 .El
833 .Pp
834 If no
835 .Ar path
836 is specified, list the repository path corresponding to the current
837 directory of the work tree, or the root directory of the repository
838 if there is no work tree.
839 .Pp
840 The options for
841 .Cm got tree
842 are as follows:
843 .Bl -tag -width Ds
844 .It Fl c Ar commit
845 List files and directories as they appear in the specified
846 .Ar commit .
847 The expected argument is a commit ID SHA1 hash or an existing reference
848 or tag name which will be resolved to a commit ID.
849 An abbreviated hash argument will be expanded to a full SHA1 hash
850 automatically, provided the abbreviation is unique.
851 .It Fl r Ar repository-path
852 Use the repository at the specified path.
853 If not specified, assume the repository is located at or above the current
854 working directory.
855 If this directory is a
856 .Nm
857 work tree, use the repository path associated with this work tree.
858 .It Fl i
859 Show object IDs of files (blob objects) and directories (tree objects).
860 .It Fl R
861 Recurse into sub-directories in the repository.
862 .El
863 .It Cm tr
864 Short alias for
865 .Cm tree .
866 .It Cm ref Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl c Ar object Oc Oo Fl s Ar reference Oc Oo Fl d Oc Op Ar name
867 Manage references in a repository.
868 .Pp
869 References may be listed, created, deleted, and changed.
870 When creating, deleting, or changing a reference the specified
871 .Ar name
872 must be an absolute reference name, i.e. it must begin with
873 .Dq refs/ .
874 .Pp
875 The options for
876 .Cm got ref
877 are as follows:
878 .Bl -tag -width Ds
879 .It Fl r Ar repository-path
880 Use the repository at the specified path.
881 If not specified, assume the repository is located at or above the current
882 working directory.
883 If this directory is a
884 .Nm
885 work tree, use the repository path associated with this work tree.
886 .It Fl l
887 List references in the repository.
888 If no
889 .Ar name
890 is specified, list all existing references in the repository.
891 If
892 .Ar name
893 is a reference namespace, list all references in this namespace.
894 Otherwise, show only the reference with the given
895 .Ar name .
896 Cannot be used together with any other options except
897 .Fl r .
898 .It Fl c Ar object
899 Create a reference or change an existing reference.
900 The reference with the specified
901 .Ar name
902 will point at the specified
903 .Ar object.
904 The expected
905 .Ar object
906 argument is a ID SHA1 hash or an existing reference or tag name which will
907 be resolved to the ID of a corresponding commit, tree, tag, or blob object.
908 Cannot be used together with any other options except
909 .Fl r .
910 .It Fl s Ar reference
911 Create a symbolic reference, or change an existing symbolic reference.
912 The symbolic reference with the specified
913 .Ar name
914 will point at the specified
915 .Ar reference
916 which must already exist in the repository.
917 Care should be taken not to create loops between references when
918 this option is used.
919 Cannot be used together with any other options except
920 .Fl r .
921 .It Fl d
922 Delete the reference with the specified
923 .Ar name
924 from the repository.
925 Cannot be used together with any other options except
926 .Fl r .
927 .El
928 .It Cm branch Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Oo Fl n Oc Op Ar name
929 Create, list, or delete branches.
930 .Pp
931 Branches are managed via references which live in the
932 .Dq refs/heads/
933 reference namespace.
934 The
935 .Cm got branch
936 command operates on references in this namespace only.
937 .Pp
938 If invoked in a work tree without any arguments, print the name of the
939 work tree's current branch.
940 .Pp
941 If a
942 .Ar name
943 argument is passed, attempt to create a branch reference with the given name.
944 By default the new branch reference will point at the latest commit on the
945 work tree's current branch if invoked in a work tree, and otherwise to a commit
946 resolved via the repository's HEAD reference.
947 .Pp
948 If invoked in a work tree, once the branch was created successfully
949 switch the work tree's head reference to the newly created branch and
950 update files across the entire work tree, just like
951 .Cm got update -b Ar name
952 would do.
953 Show the status of each affected file, using the following status codes:
954 .Bl -column YXZ description
955 .It U Ta file was updated and contained no local changes
956 .It G Ta file was updated and local changes were merged cleanly
957 .It C Ta file was updated and conflicts occurred during merge
958 .It D Ta file was deleted
959 .It A Ta new file was added
960 .It \(a~ Ta versioned file is obstructed by a non-regular file
961 .It ! Ta a missing versioned file was restored
962 .El
963 .Pp
964 The options for
965 .Cm got branch
966 are as follows:
967 .Bl -tag -width Ds
968 .It Fl c Ar commit
969 Make a newly created branch reference point at the specified
970 .Ar commit .
971 The expected
972 .Ar commit
973 argument is a commit ID SHA1 hash or an existing reference
974 or tag name which will be resolved to a commit ID.
975 .It Fl r Ar repository-path
976 Use the repository at the specified path.
977 If not specified, assume the repository is located at or above the current
978 working directory.
979 If this directory is a
980 .Nm
981 work tree, use the repository path associated with this work tree.
982 .It Fl l
983 List all existing branches in the repository.
984 If invoked in a work tree, the work tree's current branch is shown
985 with one the following annotations:
986 .Bl -column YXZ description
987 .It * Ta work tree's base commit matches the branch tip
988 .It \(a~ Ta work tree's base commit is out-of-date
989 .El
990 .It Fl d Ar name
991 Delete the branch with the specified name from the repository.
992 Only the branch reference is deleted.
993 Any commit, tree, and blob objects belonging to the branch
994 remain in the repository and may be removed separately with
995 Git's garbage collector.
996 .It Fl n
997 Do not switch and update the work tree after creating a new branch.
998 .El
999 .It Cm br
1000 Short alias for
1001 .Cm branch .
1002 .It Cm tag Oo Fl c Ar commit Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Ar name
1003 Manage tags in a repository.
1004 .Pp
1005 Tags are managed via references which live in the
1006 .Dq refs/tags/
1007 reference namespace.
1008 The
1009 .Cm got tag
1010 command operates on references in this namespace only.
1011 References in this namespace point at tag objects which contain a pointer
1012 to another object, a tag message, as well as author and timestamp information.
1013 .Pp
1014 Attempt to create a tag with the given
1015 .Ar name ,
1016 and make this tag point at the given
1017 .Ar commit .
1018 If no commit is specified, default to the latest commit on the work tree's
1019 current branch if invoked in a work tree, and to a commit resolved via
1020 the repository's HEAD reference otherwise.
1021 .Pp
1022 The options for
1023 .Cm got tag
1024 are as follows:
1025 .Bl -tag -width Ds
1026 .It Fl c Ar commit
1027 Make the newly created tag reference point at the specified
1028 .Ar commit .
1029 The expected
1030 .Ar commit
1031 argument is a commit ID SHA1 hash or an existing reference or tag name which
1032 will be resolved to a commit ID.
1033 An abbreviated hash argument will be expanded to a full SHA1 hash
1034 automatically, provided the abbreviation is unique.
1035 .It Fl m Ar message
1036 Use the specified tag message when creating the new tag.
1037 Without the
1038 .Fl m
1039 option,
1040 .Cm got tag
1041 opens a temporary file in an editor where a tag message can be written.
1042 .It Fl r Ar repository-path
1043 Use the repository at the specified path.
1044 If not specified, assume the repository is located at or above the current
1045 working directory.
1046 If this directory is a
1047 .Nm
1048 work tree, use the repository path associated with this work tree.
1049 .It Fl l
1050 List all existing tags in the repository instead of creating a new tag.
1051 If this option is used, no other command-line arguments are allowed.
1052 .El
1053 .Pp
1054 By design, the
1055 .Cm got tag
1056 command will not delete tags or change existing tags.
1057 If a tag must be deleted, the
1058 .Cm got ref
1059 command may be used to delete a tag's reference.
1060 This should only be done if the tag has not already been copied to
1061 another repository.
1062 .It Cm add Oo Fl R Oc Oo Fl I Oc Ar path ...
1063 Schedule unversioned files in a work tree for addition to the
1064 repository in the next commit.
1065 .Pp
1066 The options for
1067 .Cm got add
1068 are as follows:
1069 .Bl -tag -width Ds
1070 .It Fl R
1071 Permit recursion into directories.
1072 If this option is not specified,
1073 .Cm got add
1074 will refuse to run if a specified
1075 .Ar path
1076 is a directory.
1077 .It Fl I
1078 With -R, add files even if they match a
1079 .Cm got status
1080 ignore pattern.
1081 .El
1082 .It Cm remove Oo Fl f Oc Oo Fl k Oc Oo Fl R Oc Ar path ...
1083 Remove versioned files from a work tree and schedule them for deletion
1084 from the repository in the next commit.
1085 .Pp
1086 The options for
1087 .Cm got remove
1088 are as follows:
1089 .Bl -tag -width Ds
1090 .It Fl f
1091 Perform the operation even if a file contains local modifications.
1092 .It Fl k
1093 Keep affected files on disk.
1094 .It Fl R
1095 Permit recursion into directories.
1096 If this option is not specified,
1097 .Cm got remove
1098 will refuse to run if a specified
1099 .Ar path
1100 is a directory.
1101 .El
1102 .It Cm rm
1103 Short alias for
1104 .Cm remove .
1105 .It Cm revert Oo Fl p Oc Oo Fl F Ar response-script Oc Oo Fl R Oc Ar path ...
1106 Revert any local changes in files at the specified paths in a work tree.
1107 File contents will be overwritten with those contained in the
1108 work tree's base commit.
1109 There is no way to bring discarded changes back after
1110 .Cm got revert !
1111 .Pp
1112 If a file was added with
1113 .Cm got add
1114 it will become an unversioned file again.
1115 If a file was deleted with
1116 .Cm got remove
1117 it will be restored.
1118 .Pp
1119 The options for
1120 .Cm got revert
1121 are as follows:
1122 .Bl -tag -width Ds
1123 .It Fl p
1124 Instead of reverting all changes in files, interactively select or reject
1125 changes to revert based on
1126 .Dq y
1127 (revert change),
1128 .Dq n
1129 (keep change), and
1130 .Dq q
1131 (quit reverting this file) responses.
1132 If a file is in modified status, individual patches derived from the
1133 modified file content can be reverted.
1134 Files in added or deleted status may only be reverted in their entirety.
1135 .It Fl F Ar response-script
1136 With the
1137 .Fl p
1138 option, read
1139 .Dq y ,
1140 .Dq n ,
1141 and
1142 .Dq q
1143 responses line-by-line from the specified
1144 .Ar response-script
1145 file instead of prompting interactively.
1146 .It Fl R
1147 Permit recursion into directories.
1148 If this option is not specified,
1149 .Cm got revert
1150 will refuse to run if a specified
1151 .Ar path
1152 is a directory.
1153 .El
1154 .It Cm rv
1155 Short alias for
1156 .Cm revert .
1157 .It Cm commit Oo Fl m Ar message Oc Op Ar path ...
1158 Create a new commit in the repository from changes in a work tree
1159 and use this commit as the new base commit for the work tree.
1160 If no
1161 .Ar path
1162 is specified, commit all changes in the work tree.
1163 Otherwise, commit changes at or within the specified paths.
1164 .Pp
1165 If changes have been explicitly staged for commit with
1166 .Cm got stage ,
1167 only commit staged changes and reject any specified paths which
1168 have not been staged.
1169 .Pp
1170 Show the status of each affected file, using the following status codes:
1171 .Bl -column YXZ description
1172 .It M Ta modified file
1173 .It D Ta file was deleted
1174 .It A Ta new file was added
1175 .It m Ta modified file modes (executable bit only)
1176 .El
1177 .Pp
1178 Files which are not part of the new commit will retain their previously
1179 recorded base commit.
1180 Some
1181 .Nm
1182 commands may refuse to run while the work tree contains files from
1183 multiple base commits.
1184 The base commit of such a work tree can be made consistent by running
1185 .Cm got update
1186 across the entire work tree.
1187 .Pp
1188 The
1189 .Cm got commit
1190 command requires the
1191 .Ev GOT_AUTHOR
1192 environment variable to be set,
1193 unless Git's
1194 .Dv user.name
1195 and
1196 .Dv user.email
1197 configuration settings can be
1198 obtained from the repository's
1199 .Pa .git/config
1200 file or from Git's global
1201 .Pa ~/.gitconfig
1202 configuration file.
1203 .Pp
1204 The options for
1205 .Cm got commit
1206 are as follows:
1207 .Bl -tag -width Ds
1208 .It Fl m Ar message
1209 Use the specified log message when creating the new commit.
1210 Without the
1211 .Fl m
1212 option,
1213 .Cm got commit
1214 opens a temporary file in an editor where a log message can be written.
1215 .El
1216 .Pp
1217 .Cm got commit
1218 will refuse to run if certain preconditions are not met.
1219 If the work tree's current branch is not in the
1220 .Dq refs/heads/
1221 reference namespace, new commits may not be created on this branch.
1222 Local changes may only be committed if they are based on file content
1223 found in the most recent commit on the work tree's branch.
1224 If a path is found to be out of date,
1225 .Cm got update
1226 must be used first in order to merge local changes with changes made
1227 in the repository.
1228 .It Cm ci
1229 Short alias for
1230 .Cm commit .
1231 .It Cm cherrypick Ar commit
1232 Merge changes from a single
1233 .Ar commit
1234 into the work tree.
1235 The specified
1236 .Ar commit
1237 must be on a different branch than the work tree's base commit.
1238 The expected argument is a reference or a commit ID SHA1 hash.
1239 An abbreviated hash argument will be expanded to a full SHA1 hash
1240 automatically, provided the abbreviation is unique.
1241 .Pp
1242 Show the status of each affected file, using the following status codes:
1243 .Bl -column YXZ description
1244 .It G Ta file was merged
1245 .It C Ta file was merged and conflicts occurred during merge
1246 .It ! Ta changes destined for a missing file were not merged
1247 .It D Ta file was deleted
1248 .It d Ta file's deletion was obstructed by local modifications
1249 .It A Ta new file was added
1250 .It \(a~ Ta changes destined for a non-regular file were not merged
1251 .El
1252 .Pp
1253 The merged changes will appear as local changes in the work tree, which
1254 may be viewed with
1255 .Cm got diff ,
1256 amended manually or with further
1257 .Cm got cherrypick
1258 commands,
1259 committed with
1260 .Cm got commit ,
1261 or discarded again with
1262 .Cm got revert .
1263 .Pp
1264 .Cm got cherrypick
1265 will refuse to run if certain preconditions are not met.
1266 If the work tree contains multiple base commits it must first be updated
1267 to a single base commit with
1268 .Cm got update .
1269 If the work tree already contains files with merge conflicts, these
1270 conflicts must be resolved first.
1271 .It Cm cy
1272 Short alias for
1273 .Cm cherrypick .
1274 .It Cm backout Ar commit
1275 Reverse-merge changes from a single
1276 .Ar commit
1277 into the work tree.
1278 The specified
1279 .Ar commit
1280 must be on the same branch as the work tree's base commit.
1281 The expected argument is a reference or a commit ID SHA1 hash.
1282 An abbreviated hash argument will be expanded to a full SHA1 hash
1283 automatically, provided the abbreviation is unique.
1284 .Pp
1285 Show the status of each affected file, using the following status codes:
1286 .Bl -column YXZ description
1287 .It G Ta file was merged
1288 .It C Ta file was merged and conflicts occurred during merge
1289 .It ! Ta changes destined for a missing file were not merged
1290 .It D Ta file was deleted
1291 .It d Ta file's deletion was obstructed by local modifications
1292 .It A Ta new file was added
1293 .It \(a~ Ta changes destined for a non-regular file were not merged
1294 .El
1295 .Pp
1296 The reverse-merged changes will appear as local changes in the work tree,
1297 which may be viewed with
1298 .Cm got diff ,
1299 amended manually or with further
1300 .Cm got backout
1301 commands,
1302 committed with
1303 .Cm got commit ,
1304 or discarded again with
1305 .Cm got revert .
1306 .Pp
1307 .Cm got backout
1308 will refuse to run if certain preconditions are not met.
1309 If the work tree contains multiple base commits it must first be updated
1310 to a single base commit with
1311 .Cm got update .
1312 If the work tree already contains files with merge conflicts, these
1313 conflicts must be resolved first.
1314 .It Cm bo
1315 Short alias for
1316 .Cm backout .
1317 .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
1318 Rebase commits on the specified
1319 .Ar branch
1320 onto the tip of the current branch of the work tree.
1321 The
1322 .Ar branch
1323 must share common ancestry with the work tree's current branch.
1324 Rebasing begins with the first descendant commit of the youngest
1325 common ancestor commit shared by the specified
1326 .Ar branch
1327 and the work tree's current branch, and stops once the tip commit
1328 of the specified
1329 .Ar branch
1330 has been rebased.
1331 .Pp
1332 When
1333 .Cm got rebase
1334 is used as intended, the specified
1335 .Ar branch
1336 represents a local commit history and may already contain changes
1337 that are not yet visible in any other repositories.
1338 The work tree's current branch, which must be set with
1339 .Cm got update -b
1340 before starting the
1341 .Cm rebase
1342 operation, represents a branch from a remote repository which shares
1343 a common history with the specified
1344 .Ar branch
1345 but has progressed, and perhaps diverged, due to commits added to the
1346 remote repository.
1347 .Pp
1348 Rebased commits are accumulated on a temporary branch which the work tree
1349 will remain switched to throughout the entire rebase operation.
1350 Commits on this branch represent the same changes with the same log
1351 messages as their counterparts on the original
1352 .Ar branch ,
1353 but with different commit IDs.
1354 Once rebasing has completed successfully, the temporary branch becomes
1355 the new version of the specified
1356 .Ar branch
1357 and the work tree is automatically switched to it.
1358 .Pp
1359 While rebasing commits, show the status of each affected file,
1360 using the following status codes:
1361 .Bl -column YXZ description
1362 .It G Ta file was merged
1363 .It C Ta file was merged and conflicts occurred during merge
1364 .It ! Ta changes destined for a missing file were not merged
1365 .It D Ta file was deleted
1366 .It d Ta file's deletion was obstructed by local modifications
1367 .It A Ta new file was added
1368 .It \(a~ Ta changes destined for a non-regular file were not merged
1369 .El
1370 .Pp
1371 If merge conflicts occur the rebase operation is interrupted and may
1372 be continued once conflicts have been resolved.
1373 Alternatively, the rebase operation may be aborted which will leave
1374 .Ar branch
1375 unmodified and the work tree switched back to its original branch.
1376 .Pp
1377 If a merge conflict is resolved in a way which renders the merged
1378 change into a no-op change, the corresponding commit will be elided
1379 when the rebase operation continues.
1380 .Pp
1381 .Cm got rebase
1382 will refuse to run if certain preconditions are not met.
1383 If the work tree is not yet fully updated to the tip commit of its
1384 branch then the work tree must first be updated with
1385 .Cm got update .
1386 If changes have been staged with
1387 .Cm got stage ,
1388 these changes must first be committed with
1389 .Cm got commit
1390 or unstaged with
1391 .Cm got unstage .
1392 If the work tree contains local changes, these changes must first be
1393 committed with
1394 .Cm got commit
1395 or reverted with
1396 .Cm got revert .
1397 If the
1398 .Ar branch
1399 contains changes to files outside of the work tree's path prefix,
1400 the work tree cannot be used to rebase this branch.
1401 .Pp
1402 The
1403 .Cm got update
1404 and
1405 .Cm got commit
1406 commands will refuse to run while a rebase operation is in progress.
1407 Other commands which manipulate the work tree may be used for
1408 conflict resolution purposes.
1409 .Pp
1410 The options for
1411 .Cm got rebase
1412 are as follows:
1413 .Bl -tag -width Ds
1414 .It Fl a
1415 Abort an interrupted rebase operation.
1416 If this option is used, no other command-line arguments are allowed.
1417 .It Fl c
1418 Continue an interrupted rebase operation.
1419 If this option is used, no other command-line arguments are allowed.
1420 .El
1421 .It Cm rb
1422 Short alias for
1423 .Cm rebase .
1424 .It Cm histedit Oo Fl a Oc Oo Fl c Oc Oo Fl F Ar histedit-script Oc Oo Fl m Oc
1425 Edit commit history between the work tree's current base commit and
1426 the tip commit of the work tree's current branch.
1427 .Pp
1428 Before starting a
1429 .Cm histedit
1430 operation the work tree's current branch must be set with
1431 .Cm got update -b
1432 to the branch which should be edited, unless this branch is already the
1433 current branch of the work tree.
1434 The tip of this branch represents the upper bound (inclusive) of commits
1435 touched by the
1436 .Cm histedit
1437 operation.
1438 .Pp
1439 Furthermore, the work tree's base commit
1440 must be set with
1441 .Cm got update -c
1442 to a point in this branch's commit history where editing should begin.
1443 This commit represents the lower bound (non-inclusive) of commits touched
1444 by the
1445 .Cm histedit
1446 operation.
1447 .Pp
1448 Editing of commit history is controlled via a
1449 .Ar histedit script
1450 which can be written in an editor based on a template, passed on the
1451 command line, or generated with the
1452 .Fl m
1453 option if only log messages need to be edited.
1454 .Pp
1455 The format of the histedit script is line-based.
1456 Each line in the script begins with a command name, followed by
1457 whitespace and an argument.
1458 For most commands, the expected argument is a commit ID SHA1 hash.
1459 Any remaining text on the line is ignored.
1460 Lines which begin with the
1461 .Sq #
1462 character are ignored entirely.
1463 .Pp
1464 The available commands are as follows:
1465 .Bl -column YXZ pick-commit
1466 .It pick Ar commit Ta Use the specified commit as it is.
1467 .It edit Ar commit Ta Use the specified commit but once changes have been
1468 merged into the work tree interrupt the histedit operation for amending.
1469 .It fold Ar commit Ta Combine the specified commit with the next commit
1470 listed further below that will be used.
1471 .It drop Ar commit Ta Remove this commit from the edited history.
1472 .It mesg Ar log-message Ta Use the specified single-line log message for
1473 the commit on the previous line.
1474 If the log message argument is left empty, open an editor where a new
1475 log message can be written.
1476 .El
1477 .Pp
1478 Every commit in the history being edited must be mentioned in the script.
1479 Lines may be re-ordered to change the order of commits in the edited history.
1480 No commit may be listed more than once.
1481 .Pp
1482 Edited commits are accumulated on a temporary branch which the work tree
1483 will remain switched to throughout the entire histedit operation.
1484 Once history editing has completed successfully, the temporary branch becomes
1485 the new version of the work tree's branch and the work tree is automatically
1486 switched to it.
1487 .Pp
1488 While merging commits, show the status of each affected file,
1489 using the following status codes:
1490 .Bl -column YXZ description
1491 .It G Ta file was merged
1492 .It C Ta file was merged and conflicts occurred during merge
1493 .It ! Ta changes destined for a missing file were not merged
1494 .It D Ta file was deleted
1495 .It d Ta file's deletion was obstructed by local modifications
1496 .It A Ta new file was added
1497 .It \(a~ Ta changes destined for a non-regular file were not merged
1498 .El
1499 .Pp
1500 If merge conflicts occur the histedit operation is interrupted and may
1501 be continued once conflicts have been resolved.
1502 Alternatively, the histedit operation may be aborted which will leave
1503 the work tree switched back to its original branch.
1504 .Pp
1505 If a merge conflict is resolved in a way which renders the merged
1506 change into a no-op change, the corresponding commit will be elided
1507 when the histedit operation continues.
1508 .Pp
1509 .Cm got histedit
1510 will refuse to run if certain preconditions are not met.
1511 If the work tree's current branch is not in the
1512 .Dq refs/heads/
1513 reference namespace, the history of the branch may not be edited.
1514 If the work tree contains multiple base commits it must first be updated
1515 to a single base commit with
1516 .Cm got update .
1517 If changes have been staged with
1518 .Cm got stage ,
1519 these changes must first be committed with
1520 .Cm got commit
1521 or unstaged with
1522 .Cm got unstage .
1523 If the work tree contains local changes, these changes must first be
1524 committed with
1525 .Cm got commit
1526 or reverted with
1527 .Cm got revert .
1528 If the edited history contains changes to files outside of the work tree's
1529 path prefix, the work tree cannot be used to edit the history of this branch.
1530 .Pp
1531 The
1532 .Cm got update ,
1533 .Cm got rebase ,
1534 and
1535 .Cm got integrate
1536 commands will refuse to run while a histedit operation is in progress.
1537 Other commands which manipulate the work tree may be used, and the
1538 .Cm got commit
1539 command may be used to commit arbitrary changes to the temporary branch
1540 while the histedit operation is interrupted.
1541 .Pp
1542 The options for
1543 .Cm got histedit
1544 are as follows:
1545 .Bl -tag -width Ds
1546 .It Fl a
1547 Abort an interrupted histedit operation.
1548 If this option is used, no other command-line arguments are allowed.
1549 .It Fl c
1550 Continue an interrupted histedit operation.
1551 If this option is used, no other command-line arguments are allowed.
1552 .It Fl F Ar histedit-script
1553 Use the specified
1554 .Ar histedit-script
1555 instead of opening a temporary file in an editor where a histedit script
1556 can be written.
1557 .It Fl m
1558 Edit log messages only.
1559 This option is a quick equivalent to a histedit script which edits
1560 only log messages but otherwise leaves every picked commit as-is.
1561 The
1562 .Fl m
1563 option can only be used when starting a new histedit operation.
1564 If this option is used, no other command-line arguments are allowed.
1565 .El
1566 .It Cm he
1567 Short alias for
1568 .Cm histedit .
1569 .It Cm integrate Ar branch
1570 Integrate the specified
1571 .Ar branch
1572 into the work tree's current branch.
1573 Files in the work tree are updated to match the contents on the integrated
1574 .Ar branch ,
1575 and the reference of the work tree's branch is changed to point at the
1576 head commit of the integrated
1577 .Ar branch .
1578 .Pp
1579 Both branches can be considered equivalent after integration since they
1580 will be pointing at the same commit.
1581 Both branches remain available for future work, if desired.
1582 In case the integrated
1583 .Ar branch
1584 is no longer needed it may be deleted with
1585 .Cm got branch -d .
1586 .Pp
1587 Show the status of each affected file, using the following status codes:
1588 .Bl -column YXZ description
1589 .It U Ta file was updated
1590 .It D Ta file was deleted
1591 .It A Ta new file was added
1592 .It \(a~ Ta versioned file is obstructed by a non-regular file
1593 .It ! Ta a missing versioned file was restored
1594 .El
1595 .Pp
1596 .Cm got integrate
1597 will refuse to run if certain preconditions are not met.
1598 Most importantly, the
1599 .Ar branch
1600 must have been rebased onto the work tree's current branch with
1601 .Cm got rebase
1602 before it can be integrated, in order to linearize commit history and
1603 resolve merge conflicts.
1604 If the work tree contains multiple base commits it must first be updated
1605 to a single base commit with
1606 .Cm got update .
1607 If changes have been staged with
1608 .Cm got stage ,
1609 these changes must first be committed with
1610 .Cm got commit
1611 or unstaged with
1612 .Cm got unstage .
1613 If the work tree contains local changes, these changes must first be
1614 committed with
1615 .Cm got commit
1616 or reverted with
1617 .Cm got revert .
1618 .It Cm ig
1619 Short alias for
1620 .Cm integrate .
1621 .It Cm stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1622 Stage local changes for inclusion in the next commit.
1623 If no
1624 .Ar path
1625 is specified, stage all changes in the work tree.
1626 Otherwise, stage changes at or within the specified paths.
1627 Paths may be staged if they are added, modified, or deleted according to
1628 .Cm got status .
1629 .Pp
1630 Show the status of each affected file, using the following status codes:
1631 .Bl -column YXZ description
1632 .It A Ta file addition has been staged
1633 .It M Ta file modification has been staged
1634 .It D Ta file deletion has been staged
1635 .El
1636 .Pp
1637 Staged file contents are saved in newly created blob objects in the repository.
1638 These blobs will be referred to by tree objects once staged changes have been
1639 committed.
1640 .Pp
1641 Staged changes affect the behaviour of
1642 .Cm got commit ,
1643 .Cm got status ,
1644 and
1645 .Cm got diff .
1646 While paths with staged changes exist, the
1647 .Cm got commit
1648 command will refuse to commit any paths which do not have staged changes.
1649 Local changes created on top of staged changes can only be committed if
1650 the path is staged again, or if the staged changes are committed first.
1651 The
1652 .Cm got status
1653 command will show both local changes and staged changes.
1654 The
1655 .Cm got diff
1656 command is able to display local changes relative to staged changes,
1657 and to display staged changes relative to the repository.
1658 The
1659 .Cm got revert
1660 command cannot revert staged changes but may be used to revert
1661 local changes created on top of staged changes.
1662 .Pp
1663 The options for
1664 .Cm got stage
1665 are as follows:
1666 .Bl -tag -width Ds
1667 .It Fl l
1668 Instead of staging new changes, list paths which are already staged,
1669 along with the IDs of staged blob objects and stage status codes.
1670 If paths were provided in the command line show the staged paths
1671 among the specified paths.
1672 Otherwise, show all staged paths.
1673 .It Fl p
1674 Instead of staging the entire content of a changed file, interactively
1675 select or reject changes for staging based on
1676 .Dq y
1677 (stage change),
1678 .Dq n
1679 (reject change), and
1680 .Dq q
1681 (quit staging this file) responses.
1682 If a file is in modified status, individual patches derived from the
1683 modified file content can be staged.
1684 Files in added or deleted status may only be staged or rejected in
1685 their entirety.
1686 .It Fl F Ar response-script
1687 With the
1688 .Fl p
1689 option, read
1690 .Dq y ,
1691 .Dq n ,
1692 and
1693 .Dq q
1694 responses line-by-line from the specified
1695 .Ar response-script
1696 file instead of prompting interactively.
1697 .El
1698 .Pp
1699 .Cm got stage
1700 will refuse to run if certain preconditions are not met.
1701 If a file contains merge conflicts, these conflicts must be resolved first.
1702 If a file is found to be out of date relative to the head commit on the
1703 work tree's current branch, the file must be updated with
1704 .Cm got update
1705 before it can be staged (however, this does not prevent the file from
1706 becoming out-of-date at some point after having been staged).
1707 .Pp
1708 The
1709 .Cm got update ,
1710 .Cm got rebase ,
1711 and
1712 .Cm got histedit
1713 commands will refuse to run while staged changes exist.
1714 If staged changes cannot be committed because a staged path
1715 is out of date, the path must be unstaged with
1716 .Cm got unstage
1717 before it can be updated with
1718 .Cm got update ,
1719 and may then be staged again if necessary.
1720 .It Cm sg
1721 Short alias for
1722 .Cm stage .
1723 .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1724 Merge staged changes back into the work tree and put affected paths
1725 back into non-staged status.
1726 If no
1727 .Ar path
1728 is specified, unstage all staged changes across the entire work tree.
1729 Otherwise, unstage changes at or within the specified paths.
1730 .Pp
1731 Show the status of each affected file, using the following status codes:
1732 .Bl -column YXZ description
1733 .It G Ta file was unstaged
1734 .It C Ta file was unstaged and conflicts occurred during merge
1735 .It ! Ta changes destined for a missing file were not merged
1736 .It D Ta file was staged as deleted and still is deleted
1737 .It d Ta file's deletion was obstructed by local modifications
1738 .It \(a~ Ta changes destined for a non-regular file were not merged
1739 .El
1740 .Pp
1741 The options for
1742 .Cm got unstage
1743 are as follows:
1744 .Bl -tag -width Ds
1745 .It Fl p
1746 Instead of unstaging the entire content of a changed file, interactively
1747 select or reject changes for unstaging based on
1748 .Dq y
1749 (unstage change),
1750 .Dq n
1751 (keep change staged), and
1752 .Dq q
1753 (quit unstaging this file) responses.
1754 If a file is staged in modified status, individual patches derived from the
1755 staged file content can be unstaged.
1756 Files staged in added or deleted status may only be unstaged in their entirety.
1757 .It Fl F Ar response-script
1758 With the
1759 .Fl p
1760 option, read
1761 .Dq y ,
1762 .Dq n ,
1763 and
1764 .Dq q
1765 responses line-by-line from the specified
1766 .Ar response-script
1767 file instead of prompting interactively.
1768 .El
1769 .It Cm ug
1770 Short alias for
1771 .Cm unstage .
1772 .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1773 Parse and print contents of objects to standard output in a line-based
1774 text format.
1775 Content of commit, tree, and tag objects is printed in a way similar
1776 to the actual content stored in such objects.
1777 Blob object contents are printed as they would appear in files on disk.
1778 .Pp
1779 Attempt to interpret each argument as a reference, a tag name, or
1780 an object ID SHA1 hash.
1781 References will be resolved to an object ID.
1782 Tag names will resolved to a tag object.
1783 An abbreviated hash argument will be expanded to a full SHA1 hash
1784 automatically, provided the abbreviation is unique.
1785 .Pp
1786 If none of the above interpretations produce a valid result, or if the
1787 .Fl P
1788 option is used, attempt to interpret the argument as a path which will
1789 be resolved to the ID of an object found at this path in the repository.
1790 .Pp
1791 The options for
1792 .Cm got cat
1793 are as follows:
1794 .Bl -tag -width Ds
1795 .It Fl c Ar commit
1796 Look up paths in the specified
1797 .Ar commit .
1798 If this option is not used, paths are looked up in the commit resolved
1799 via the repository's HEAD reference.
1800 The expected argument is a commit ID SHA1 hash or an existing reference
1801 or tag name which will be resolved to a commit ID.
1802 An abbreviated hash argument will be expanded to a full SHA1 hash
1803 automatically, provided the abbreviation is unique.
1804 .It Fl r Ar repository-path
1805 Use the repository at the specified path.
1806 If not specified, assume the repository is located at or above the current
1807 working directory.
1808 If this directory is a
1809 .Nm
1810 work tree, use the repository path associated with this work tree.
1811 .It Fl P
1812 Interpret all arguments as paths only.
1813 This option can be used to resolve ambiguity in cases where paths
1814 look like tag names, reference names, or object IDs.
1815 .El
1816 .El
1817 .Sh ENVIRONMENT
1818 .Bl -tag -width GOT_AUTHOR
1819 .It Ev GOT_AUTHOR
1820 The author's name and email address for
1821 .Cm got commit
1822 and
1823 .Cm got import ,
1824 for example:
1825 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1826 Because
1827 .Xr git 1
1828 may fail to parse commits without an email address in author data,
1829 .Nm
1830 attempts to reject
1831 .Ev GOT_AUTHOR
1832 environment variables with a missing email address.
1833 .Pp
1834 If present, Git's
1835 .Dv user.name
1836 and
1837 .Dv user.email
1838 configuration settings in the repository's
1839 .Pa .git/config
1840 file will override the value of
1841 .Ev GOT_AUTHOR .
1842 However, the
1843 .Dv user.name
1844 and
1845 .Dv user.email
1846 configuration settings contained in Git's global
1847 .Pa ~/.gitconfig
1848 configuration file will be used only if the
1849 .Ev GOT_AUTHOR
1850 environment variable is
1851 .Em not
1852 set.
1853 .It Ev VISUAL , EDITOR
1854 The editor spawned by
1855 .Cm got commit ,
1856 .Cm got import ,
1858 .Cm got tag .
1859 .It Ev GOT_LOG_DEFAULT_LIMIT
1860 The default limit on the number of commits traversed by
1861 .Cm got log .
1862 If set to zero, the limit is unbounded.
1863 This variable will be silently ignored if it is set to a non-numeric value.
1864 .El
1865 .Sh EXIT STATUS
1866 .Ex -std got
1867 .Sh EXAMPLES
1868 Clone an existing Git repository for use with
1869 .Nm .
1870 .Pp
1871 .Dl $ cd /var/git/
1872 .Dl $ got clone ssh://git@github.com/openbsd/src.git
1873 .Pp
1874 Use of HTTP URLs currently requires
1875 .Xr git 1 :
1876 .Pp
1877 .Dl $ cd /var/git/
1878 .Dl $ git clone --bare https://github.com/openbsd/src.git
1879 .Pp
1880 Alternatively, for quick and dirty local testing of
1881 .Nm
1882 a new Git repository could be created and populated with files,
1883 e.g. from a temporary CVS checkout located at
1884 .Pa /tmp/src :
1885 .Pp
1886 .Dl $ got init /var/git/src.git
1887 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1888 .Pp
1889 Check out a work tree from the Git repository to /usr/src:
1890 .Pp
1891 .Dl $ got checkout /var/git/src.git /usr/src
1892 .Pp
1893 View local changes in a work tree directory:
1894 .Pp
1895 .Dl $ got status
1896 .Dl $ got diff | less
1897 .Pp
1898 Interactively revert selected local changes in a work tree directory:
1899 .Pp
1900 .Dl $ got revert -p -R\ .
1901 .Pp
1902 In a work tree or a git repository directory, list all branch references:
1903 .Pp
1904 .Dl $ got branch -l
1905 .Pp
1906 In a work tree or a git repository directory, create a new branch called
1907 .Dq unified-buffer-cache
1908 which is forked off the
1909 .Dq master
1910 branch:
1911 .Pp
1912 .Dl $ got branch unified-buffer-cache master
1913 .Pp
1914 Switch an existing work tree to the branch
1915 .Dq unified-buffer-cache .
1916 Local changes in the work tree will be preserved and merged if necessary:
1917 .Pp
1918 .Dl $ got update -b unified-buffer-cache
1919 .Pp
1920 Create a new commit from local changes in a work tree directory.
1921 This new commit will become the head commit of the work tree's current branch:
1922 .Pp
1923 .Dl $ got commit
1924 .Pp
1925 In a work tree or a git repository directory, view changes committed in
1926 the 3 most recent commits to the work tree's branch, or the branch resolved
1927 via the repository's HEAD reference, respectively:
1928 .Pp
1929 .Dl $ got log -p -l 3
1930 .Pp
1931 As above, but display changes in the order in which
1932 .Xr patch 1
1933 could apply them in sequence:
1934 .Pp
1935 .Dl $ got log -p -l 3 -R
1936 .Pp
1937 In a work tree or a git repository directory, log the history of a subdirectory:
1938 .Pp
1939 .Dl $ got log sys/uvm
1940 .Pp
1941 While operating inside a work tree, paths are specified relative to the current
1942 working directory, so this command will log the subdirectory
1943 .Pa sys/uvm :
1944 .Pp
1945 .Dl $ cd sys/uvm && got log '.'
1946 .Pp
1947 And this command has the same effect:
1948 .Pp
1949 .Dl $ cd sys/dev/usb && got log ../../uvm
1950 .Pp
1951 Add new files and remove obsolete files in a work tree directory:
1952 .Pp
1953 .Dl $ got add sys/uvm/uvm_ubc.c
1954 .Dl $ got remove sys/uvm/uvm_vnode.c
1955 .Pp
1956 Create a new commit from local changes in a work tree directory
1957 with a pre-defined log message.
1958 .Pp
1959 .Dl $ got commit -m 'unify the buffer cache'
1960 .Pp
1961 Update any work tree checked out from the
1962 .Dq unified-buffer-cache
1963 branch to the latest commit on this branch:
1964 .Pp
1965 .Dl $ got update
1966 .Pp
1967 Roll file content on the unified-buffer-cache branch back by one commit,
1968 and then fetch the rolled-back change into the work tree as a local change
1969 to be amended and perhaps committed again:
1970 .Pp
1971 .Dl $ got backout unified-buffer-cache
1972 .Dl $ got commit -m 'roll back previous'
1973 .Dl $ # now back out the previous backout :-)
1974 .Dl $ got backout unified-buffer-cache
1975 .Pp
1976 Fetch new upstream commits into the local repository's
1977 .Dq origin/master
1978 branch:
1979 .Pp
1980 .Dl $ cd /usr/src
1981 .Dl $ got fetch
1982 .Pp
1983 In a repository created with a HTTP URL and
1984 .Cm git clone --bare
1985 the
1986 .Xr git-fetch 1
1987 command must be used instead:
1988 .Pp
1989 .Dl $ cd /var/git/src.git
1990 .Dl $ git fetch origin master:refs/remotes/origin/master
1991 .Pp
1992 Rebase the local
1993 .Dq master
1994 branch to merge the new changes that are now visible on the
1995 .Dq origin/master
1996 branch:
1997 .Pp
1998 .Dl $ cd /usr/src
1999 .Dl $ got update -b origin/master
2000 .Dl $ got rebase master
2001 .Pp
2002 Rebase the
2003 .Dq unified-buffer-cache
2004 branch on top of the new head commit of the
2005 .Dq master
2006 branch.
2007 .Pp
2008 .Dl $ got update -b master
2009 .Dl $ got rebase unified-buffer-cache
2010 .Pp
2011 Create a patch from all changes on the unified-buffer-cache branch.
2012 The patch can be mailed out for review and applied to
2013 .Ox Ns 's
2014 CVS tree:
2015 .Pp
2016 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
2017 .Pp
2018 Edit the entire commit history of the
2019 .Dq unified-buffer-cache
2020 branch:
2021 .Pp
2022 .Dl $ got update -b unified-buffer-cache
2023 .Dl $ got update -c master
2024 .Dl $ got histedit
2025 .Pp
2026 In order to merge changes committed to the
2027 .Dq unified-buffer-cache
2028 branch back into the
2029 .Dq master
2030 branch, the
2031 .Dq unified-buffer-cache
2032 branch must first be rebased onto the
2033 .Dq master
2034 branch:
2035 .Pp
2036 .Dl $ got update -b master
2037 .Dl $ got rebase unified-buffer-cache
2038 .Pp
2039 Changes on the
2040 .Dq unified-buffer-cache
2041 branch can now be made visible on the
2042 .Dq master
2043 branch with
2044 .Cm got integrate .
2045 Because the rebase operation switched the work tree to the
2046 .Dq unified-buffer-cache
2047 branch, the work tree must be switched back to the
2048 .Dq master
2049 branch before the
2050 .Dq unified-buffer-cache
2051 branch can be integrated into
2052 .Dq master :
2053 .Pp
2054 .Dl $ got update -b master
2055 .Dl $ got integrate unified-buffer-cache
2056 .Pp
2057 Additional steps may be necessary if local changes need to be pushed back
2058 to the remote repository, which currently requires
2059 .Cm git push .
2060 Before working against existing branches in a repository cloned with
2061 .Cm git clone --bare
2062 instead of
2063 .Cm got clone ,
2064 a Git
2065 .Dq refspec
2066 must be configured to map all references in the remote repository
2067 into the
2068 .Dq refs/remotes
2069 namespace of the local repository.
2070 This can achieved by setting Git's
2071 .Pa remote.origin.fetch
2072 configuration variable to the value
2073 .Dq +refs/heads/*:refs/remotes/origin/*
2074 with the
2075 .Cm git config
2076 command:
2077 .Pp
2078 .Dl $ cd /var/git/repo
2079 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
2080 .Pp
2081 Additionally, the
2082 .Dq mirror
2083 option must be disabled:
2084 .Pp
2085 .Dl $ cd /var/git/repo
2086 .Dl $ git config remote.origin.mirror false
2087 .Pp
2088 Alternatively, the following
2089 .Xr git-fetch 1
2090 configuration item can be added manually to the Git repository's
2091 .Pa config
2092 file:
2093 .Pp
2094 .Dl [remote "origin"]
2095 .Dl url = ...
2096 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
2097 .Dl mirror = false
2098 .Pp
2099 This configuration leaves the local repository's
2100 .Dq refs/heads
2101 namespace free for use by local branches checked out with
2102 .Cm got checkout
2103 and, if needed, created with
2104 .Cm got branch .
2105 .Pp
2106 Branches in the
2107 .Dq remotes/origin
2108 namespace can now be updated with incoming changes from the remote
2109 repository with
2110 .Cm got fetch
2112 .Xr git-fetch 1
2113 without extra command line arguments:
2114 .Pp
2115 .Dl $ cd /var/git/repo
2116 .Dl $ git fetch
2117 .Pp
2118 To make changes fetched from the remote repository appear on the
2119 .Dq master
2120 branch, the
2121 .Dq master
2122 branch must be rebased onto the
2123 .Dq origin/master
2124 branch.
2125 This will also merge local changes, if any, with the incoming changes:
2126 .Pp
2127 .Dl $ got update -b origin/master
2128 .Dl $ got rebase master
2129 .Pp
2130 On the
2131 .Dq master
2132 branch, log messages for local changes can now be amended with
2133 .Dq OK
2134 by other developers and any other important new information:
2135 .Pp
2136 .Dl $ got update -c origin/master
2137 .Dl $ got histedit -m
2138 .Pp
2139 Local changes on the
2140 .Dq master
2141 branch can then be pushed to the remote
2142 repository with
2143 .Cm git push :
2144 .Pp
2145 .Dl $ cd /var/git/repo
2146 .Dl $ git push origin master
2147 .Sh SEE ALSO
2148 .Xr tog 1 ,
2149 .Xr git-repository 5 ,
2150 .Xr got-worktree 5
2151 .Sh AUTHORS
2152 .An Stefan Sperling Aq Mt stsp@openbsd.org
2153 .An Martin Pieuchot Aq Mt mpi@openbsd.org
2154 .An Joshua Stein Aq Mt jcs@openbsd.org
2155 .An Ori Bernstein Aq Mt ori@openbsd.org
2156 .Sh CAVEATS
2157 .Nm
2158 is a work-in-progress and many commands remain to be implemented.
2159 At present, the user has to fall back on
2160 .Xr git 1
2161 to perform many tasks, in particular tasks related to repository
2162 administration and tasks which require a network connection.