Blob


1 .\"
2 .\" Copyright (c) 2017 Martin Pieuchot
3 .\" Copyright (c) 2018, 2019 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 preceed the command name, and are as follows:
54 .Bl -tag -width tenletters
55 .It Fl h
56 Display usage information.
57 .El
58 .Pp
59 The commands for
60 .Nm
61 are as follows:
62 .Bl -tag -width checkout
63 .It Cm init Ar repository-path
64 Create a new empty repository at the specified
65 .Ar repository-path .
66 .Pp
67 After
68 .Cm got init ,
69 the
70 .Cm got import
71 command must be used to populate the empty repository before
72 .Cm got checkout
73 can be used.
74 .Pp
75 .It Cm import [ Fl b Ar branch ] [ Fl m Ar message ] [ Fl r Ar repository-path ] [ Fl I Ar pattern ] directory
76 Create an initial commit in a repository from the file hierarchy
77 within the specified
78 .Ar directory .
79 The created commit will not have any parent commits, i.e. it will be a
80 root commit.
81 Also create a new reference which provides a branch name for the newly
82 created commit.
83 Show the path of each imported file to indicate progress.
84 .Pp
85 The
86 .Cm got import
87 command requires the
88 .Ev GOT_AUTHOR
89 environment variable to be set.
90 .Pp
91 The options for
92 .Cm got import
93 are as follows:
94 .Bl -tag -width Ds
95 .It Fl b Ar branch
96 Create the specified
97 .Ar branch
98 instead of creating the default branch
99 .Dq master .
100 Use of this option is required if the
101 .Dq master
102 branch already exists.
103 .It Fl m Ar message
104 Use the specified log message when creating the new commit.
105 Without the
106 .Fl m
107 option,
108 .Cm got import
109 opens a temporary file in an editor where a log message can be written.
110 .It Fl r Ar repository-path
111 Use the repository at the specified path.
112 If not specified, assume the repository is located at or above the current
113 working directory.
114 .It Fl I Ar pattern
115 Ignore files or directories with a name which matches the specified
116 .Ar pattern .
117 This option may be specified multiple times to build a list of ignore patterns.
118 The
119 .Ar pattern
120 follows the globbing rules documented in
121 .Xr glob 7 .
122 .El
123 .It Cm checkout [ Fl b Ar branch ] [ Fl c Ar commit ] [ Fl p Ar path-prefix ] repository-path [ work-tree-path ]
124 Copy files from a repository into a new work tree.
125 If the
126 .Ar work tree path
127 is not specified, either use the last component of
128 .Ar repository path ,
129 or if a
130 .Ar path prefix
131 was specified use the last component of
132 .Ar path prefix .
133 .Pp
134 The options for
135 .Cm got checkout
136 are as follows:
137 .Bl -tag -width Ds
138 .It Fl b Ar branch
139 Check out files from a commit on the specified
140 .Ar branch .
141 If this option is not specified, a branch resolved via the repository's HEAD
142 reference will be used.
143 .It Fl c Ar commit
144 Check out files from the specified
145 .Ar commit
146 on the selected branch.
147 The expected argument is a commit ID SHA1 hash or an existing reference
148 which will be resolved to a commit ID.
149 An abbreviated hash argument will be expanded to a full SHA1 hash
150 automatically, provided the abbreviation is unique.
151 If this option is not specified, the most recent commit on the selected
152 branch will be used.
153 .It Fl p Ar path-prefix
154 Restrict the work tree to a subset of the repository's tree hierarchy.
155 Only files beneath the specified
156 .Ar path-prefix
157 will be checked out.
158 .El
159 .It Cm co
160 Short alias for
161 .Cm checkout .
162 .It Cm update [ Fl b Ar branch ] [ Fl c Ar commit ] [ Ar path ... ]
163 Update an existing work tree to a different commit.
164 Show the status of each affected file, using the following status codes:
165 .Bl -column YXZ description
166 .It U Ta file was updated and contained no local changes
167 .It G Ta file was updated and local changes were merged cleanly
168 .It C Ta file was updated and conflicts occurred during merge
169 .It D Ta file was deleted
170 .It A Ta new file was added
171 .It ~ Ta versioned file is obstructed by a non-regular file
172 .It ! Ta a missing versioned file was restored
173 .El
174 .Pp
175 If no
176 .Ar path
177 is specified, update the entire work tree.
178 Otherwise, restrict the update operation to files at or within the
179 specified paths.
180 Each path is required to exist in the update operation's target commit.
181 Files in the work tree outside specified paths will remain unchanged and
182 will retain their previously recorded base commit.
183 Some
184 .Nm
185 commands may refuse to run while the work tree contains files from
186 multiple base commits.
187 The base commit of such a work tree can be made consistent by running
188 .Cm got update
189 across the entire work tree.
190 Specifying a
191 .Ar path
192 is incompatible with the
193 .Fl b
194 option.
195 .Pp
196 The options for
197 .Cm got update
198 are as follows:
199 .Bl -tag -width Ds
200 .It Fl b Ar branch
201 Switch the work tree's branch reference to the specified
202 .Ar branch
203 before updating the work tree.
204 This option requires that all paths in the work tree are updated.
205 .It Fl c Ar commit
206 Update the work tree to the specified
207 .Ar commit .
208 The expected argument is a commit ID SHA1 hash or an existing reference
209 which will be resolved to a commit ID.
210 An abbreviated hash argument will be expanded to a full SHA1 hash
211 automatically, provided the abbreviation is unique.
212 If this option is not specified, the most recent commit on the work tree's
213 branch will be used.
214 .El
215 .It Cm up
216 Short alias for
217 .Cm update .
218 .It Cm status [ Ar path ... ]
219 Show the current modification status of files in a work tree,
220 using the following status codes:
221 .Bl -column YXZ description
222 .It M Ta modified file
223 .It A Ta file scheduled for addition in next commit
224 .It D Ta file scheduled for deletion in next commit
225 .It C Ta modified or added file which contains merge conflicts
226 .It ! Ta versioned file was expected on disk but is missing
227 .It ~ Ta versioned file is obstructed by a non-regular file
228 .It ? Ta unversioned item not tracked by
229 .Nm
230 .El
231 .Pp
232 If no
233 .Ar path
234 is specified, show modifications in the entire work tree.
235 Otherwise, show modifications at or within the specified paths.
236 .It Cm st
237 Short alias for
238 .Cm status .
239 .It Cm log [ Fl c Ar commit ] [ Fl C Ar number ] [ Fl f ] [ Fl l Ar N ] [ Fl p ] [ Fl r Ar repository-path ] [ path ]
240 Display history of a repository.
241 If a
242 .Ar path
243 is specified, show only commits which modified this path.
244 .Pp
245 The options for
246 .Cm got log
247 are as follows:
248 .Bl -tag -width Ds
249 .It Fl c Ar commit
250 Start traversing history at the specified
251 .Ar commit .
252 The expected argument is a commit ID SHA1 hash or an existing reference
253 which will be resolved to a commit ID.
254 An abbreviated hash argument will be expanded to a full SHA1 hash
255 automatically, provided the abbreviation is unique.
256 If this option is not specified, default to the work tree's current branch
257 if invoked in a work tree, or to the repository's HEAD reference.
258 .It Fl C Ar number
259 Set the number of context lines shown in diffs with
260 .Fl p .
261 By default, 3 lines of context are shown.
262 .It Fl f
263 Restrict history traversal to the first parent of each commit.
264 This shows the linear history of the current branch only.
265 Merge commits which affected the current branch will be shown but
266 individual commits which originated on other branches will be omitted.
267 .It Fl l Ar N
268 Limit history traversal to a given number of commits.
269 .It Fl p
270 Display the patch of modifications made in each commit.
271 .It Fl r Ar repository-path
272 Use the repository at the specified path.
273 If not specified, assume the repository is located at or above the current
274 working directory.
275 If this directory is a
276 .Nm
277 work tree, use the repository path associated with this work tree.
278 .El
279 .It Cm diff [ Fl C Ar number ] [ Fl r Ar repository-path ] [ Ar object1 Ar object2 | Ar path ]
280 When invoked within a work tree with less than two arguments, display
281 uncommitted changes in the work tree.
282 If a
283 .Ar path
284 is specified, only show changes within this path.
285 .Pp
286 If two arguments are provided, treat each argument as a reference,
287 or an object ID SHA1 hash, and display differences between these objects.
288 Both objects must be of the same type (blobs, trees, or commits).
289 An abbreviated hash argument will be expanded to a full SHA1 hash
290 automatically, provided the abbreviation is unique.
291 .Pp
292 The options for
293 .Cm got diff
294 are as follows:
295 .Bl -tag -width Ds
296 .It Fl C Ar number
297 Set the number of context lines shown in the diff.
298 By default, 3 lines of context are shown.
299 .It Fl r Ar repository-path
300 Use the repository at the specified path.
301 If not specified, assume the repository is located at or above the current
302 working directory.
303 If this directory is a
304 .Nm
305 work tree, use the repository path associated with this work tree.
306 .El
307 .It Cm blame [ Fl c Ar commit ] [ Fl r Ar repository-path ] Ar path
308 Display line-by-line history of a file at the specified path.
309 .Pp
310 The options for
311 .Cm got blame
312 are as follows:
313 .Bl -tag -width Ds
314 .It Fl c Ar commit
315 Start traversing history at the specified
316 .Ar commit .
317 The expected argument is a commit ID SHA1 hash or an existing reference
318 which will be resolved to a commit ID.
319 An abbreviated hash argument will be expanded to a full SHA1 hash
320 automatically, provided the abbreviation is unique.
321 .It Fl r Ar repository-path
322 Use the repository at the specified path.
323 If not specified, assume the repository is located at or above the current
324 working directory.
325 If this directory is a
326 .Nm
327 work tree, use the repository path associated with this work tree.
328 .El
329 .It Cm tree [ Fl c Ar commit ] [ Fl r Ar repository-path ] [ Fl i ] [ Fl R] [ Ar path ]
330 Display a listing of files and directories at the specified
331 directory path in the repository.
332 Entries shown in this listing may carry one of the following trailing
333 annotations:
334 .Bl -column YXZ description
335 .It / Ta entry is a directory
336 .It * Ta entry is an executable file
337 .El
338 .Pp
339 If no
340 .Ar path
341 is specified, list the repository path corresponding to the current
342 directory of the work tree, or the root directory of the repository
343 if there is no work tree.
344 .Pp
345 The options for
346 .Cm got tree
347 are as follows:
348 .Bl -tag -width Ds
349 .It Fl c Ar commit
350 List files and directories as they appear in the specified
351 .Ar commit .
352 The expected argument is a commit ID SHA1 hash or an existing reference
353 which will be resolved to a commit ID.
354 An abbreviated hash argument will be expanded to a full SHA1 hash
355 automatically, provided the abbreviation is unique.
356 .It Fl r Ar repository-path
357 Use the repository at the specified path.
358 If not specified, assume the repository is located at or above the current
359 working directory.
360 If this directory is a
361 .Nm
362 work tree, use the repository path associated with this work tree.
363 .It Fl i
364 Show object IDs of files (blob objects) and directories (tree objects).
365 .It Fl R
366 Recurse into sub-directories in the repository.
367 .El
368 .It Cm ref [ Fl r Ar repository-path ] [ Fl l ] [ Fl d Ar name ] [ Ar name Ar target ]
369 Manage references in a repository.
370 .Pp
371 If no options are passed, expect two arguments and attempt to create,
372 or update, the reference with the given
373 .Ar name ,
374 and make it point at the given
375 .Ar target .
376 The target may be an object ID SHA1 hash or an existing reference which
377 will be resolved to an object ID.
378 An abbreviated hash argument will be expanded to a full SHA1 hash
379 automatically, provided the abbreviation is unique.
380 .Pp
381 The options for
382 .Cm got ref
383 are as follows:
384 .Bl -tag -width Ds
385 .It Fl r Ar repository-path
386 Use the repository at the specified path.
387 If not specified, assume the repository is located at or above the current
388 working directory.
389 If this directory is a
390 .Nm
391 work tree, use the repository path associated with this work tree.
392 .It Fl l
393 List all existing references in the repository.
394 .It Fl d Ar name
395 Delete the reference with the specified name from the repository.
396 .El
397 .It Cm branch [ Fl r Ar repository-path ] [ Fl l ] [ Fl d Ar name ] [ Ar name [ Ar base-branch ] ]
398 Manage branches in a repository.
399 .Pp
400 Branches are managed via references which live in the
401 .Dq refs/heads/
402 reference namespace.
403 The
404 .Cm got branch
405 command operates on references in this namespace only.
406 .Pp
407 If no options are passed, expect one or two arguments and attempt to create
408 a branch with the given
409 .Ar name ,
410 and make it point at the given
411 .Ar base-branch .
412 If no
413 .Ar base-branch
414 is specified, default to the work tree's current branch if invoked in a
415 work tree, or to the repository's HEAD reference.
416 .Pp
417 The options for
418 .Cm got branch
419 are as follows:
420 .Bl -tag -width Ds
421 .It Fl r Ar repository-path
422 Use the repository at the specified path.
423 If not specified, assume the repository is located at or above the current
424 working directory.
425 If this directory is a
426 .Nm
427 work tree, use the repository path associated with this work tree.
428 .It Fl l
429 List all existing branches in the repository.
430 If invoked in a work tree, the work tree's current branch is shown
431 with one the following annotations:
432 .Bl -column YXZ description
433 .It * Ta work tree's base commit matches the branch tip
434 .It ~ Ta work tree's base commit is out-of-date
435 .El
436 .It Fl d Ar name
437 Delete the branch with the specified name from the repository.
438 Only the branch reference is deleted.
439 Any commit, tree, and blob objects belonging to the branch
440 remain in the repository and may be removed separately with
441 Git's garbage collector.
442 .El
443 .It Cm br
444 Short alias for
445 .Cm branch .
446 .It Cm add Ar file-path ...
447 Schedule unversioned files in a work tree for addition to the
448 repository in the next commit.
449 .It Cm remove Ar file-path ...
450 Remove versioned files from a work tree and schedule them for deletion
451 from the repository in the next commit.
452 .Pp
453 The options for
454 .Cm got remove
455 are as follows:
456 .Bl -tag -width Ds
457 .It Fl f
458 Perform the operation even if a file contains uncommitted modifications.
459 .El
460 .It Cm rm
461 Short alias for
462 .Cm remove .
463 .It Cm revert Ar file-path ...
464 Revert any uncommited changes in files at the specified paths.
465 File contents will be overwritten with those contained in the
466 work tree's base commit. There is no way to bring discarded
467 changes back after
468 .Cm got revert !
469 .Pp
470 If a file was added with
471 .Cm got add
472 it will become an unversioned file again.
473 If a file was deleted with
474 .Cm got remove
475 it will be restored.
476 .It Cm rv
477 Short alias for
478 .Cm revert .
479 .It Cm commit [ Fl m Ar message ] [ path ... ]
480 Create a new commit in the repository from local changes in a work tree
481 and use this commit as the new base commit for the work tree.
482 If no
483 .Ar path
484 is specified, commit all local changes in the work tree.
485 Otherwise, commit local changes at or within the specified paths.
486 .Pp
487 Show the status of each affected file, using the following status codes:
488 .Bl -column YXZ description
489 .It M Ta modified file
490 .It D Ta file was deleted
491 .It A Ta new file was added
492 .El
493 .Pp
494 Files without local changes will retain their previously recorded base
495 commit.
496 Some
497 .Nm
498 commands may refuse to run while the work tree contains files from
499 multiple base commits.
500 The base commit of such a work tree can be made consistent by running
501 .Cm got update
502 across the entire work tree.
503 .Pp
504 The
505 .Cm got commit
506 command requires the
507 .Ev GOT_AUTHOR
508 environment variable to be set.
509 .Pp
510 The options for
511 .Cm got commit
512 are as follows:
513 .Bl -tag -width Ds
514 .It Fl m Ar message
515 Use the specified log message when creating the new commit.
516 Without the
517 .Fl m
518 option,
519 .Cm got commit
520 opens a temporary file in an editor where a log message can be written.
521 .El
522 .It Cm ci
523 Short alias for
524 .Cm commit .
525 .It Cm cherrypick Ar commit
526 Merge changes from a single
527 .Ar commit
528 into the work tree.
529 The specified
530 .Ar commit
531 must be on a different branch than the work tree's base commit.
532 The expected argument is a reference or a commit ID SHA1 hash.
533 An abbreviated hash argument will be expanded to a full SHA1 hash
534 automatically, provided the abbreviation is unique.
535 .Pp
536 Show the status of each affected file, using the following status codes:
537 .Bl -column YXZ description
538 .It G Ta file was merged
539 .It C Ta file was merged and conflicts occurred during merge
540 .It ! Ta changes destined for a missing file were not merged
541 .It D Ta file was deleted
542 .It d Ta file's deletion was obstructed by local modifications
543 .It A Ta new file was added
544 .It ~ Ta changes destined for a non-regular file were not merged
545 .El
546 .Pp
547 The merged changes will appear as local changes in the work tree, which
548 may be viewed with
549 .Cm got diff ,
550 amended manually or with further
551 .Cm got cherrypick
552 comands,
553 committed with
554 .Cm got commit ,
555 or discarded again with
556 .Cm got revert .
557 .Pp
558 .Cm got cherrypick
559 will refuse to run if certain preconditions are not met.
560 If the work tree contains multiple base commits it must first be updated
561 to a single base commit with
562 .Cm got update .
563 If the work tree already contains files with merge conflicts, these
564 conflicts must be resolved first.
565 .It Cm cy
566 Short alias for
567 .Cm cherrypick .
568 .It Cm backout Ar commit
569 Reverse-merge changes from a single
570 .Ar commit
571 into the work tree.
572 The specified
573 .Ar commit
574 must be on the same branch as the work tree's base commit.
575 The expected argument is a reference or a commit ID SHA1 hash.
576 An abbreviated hash argument will be expanded to a full SHA1 hash
577 automatically, provided the abbreviation is unique.
578 .Pp
579 Show the status of each affected file, using the following status codes:
580 .Bl -column YXZ description
581 .It G Ta file was merged
582 .It C Ta file was merged and conflicts occurred during merge
583 .It ! Ta changes destined for a missing file were not merged
584 .It D Ta file was deleted
585 .It d Ta file's deletion was obstructed by local modifications
586 .It A Ta new file was added
587 .It ~ Ta changes destined for a non-regular file were not merged
588 .El
589 .Pp
590 The reverse-merged changes will appear as local changes in the work tree,
591 which may be viewed with
592 .Cm got diff ,
593 amended manually or with further
594 .Cm got backout
595 comands,
596 committed with
597 .Cm got commit ,
598 or discarded again with
599 .Cm got revert .
600 .Pp
601 .Cm got backout
602 will refuse to run if certain preconditions are not met.
603 If the work tree contains multiple base commits it must first be updated
604 to a single base commit with
605 .Cm got update .
606 If the work tree already contains files with merge conflicts, these
607 conflicts must be resolved first.
608 .It Cm bo
609 Short alias for
610 .Cm backout .
611 .It Cm rebase [ Fl a ] [ Fl c] [ Ar branch ]
612 Rebase commits on the specified
613 .Ar branch
614 onto the tip of the current branch of the work tree.
615 The
616 .Ar branch
617 must share common ancestry with the work tree's current branch.
618 Rebasing begins with the first descendent commit of the youngest
619 common ancestor commit shared by the specified
620 .Ar branch
621 and the work tree's current branch, and stops once the tip commit
622 of the specified
623 .Ar branch
624 has been rebased.
625 .Pp
626 Rebased commits are accumulated on a temporary branch and represent
627 the same changes with the same log messages as their counterparts
628 on the original
629 .Ar branch ,
630 but with different commit IDs.
631 Once rebasing has completed successfully, the temporary branch becomes
632 the new version of the specified
633 .Ar branch
634 and the work tree is automatically switched to it.
635 .Pp
636 While rebasing commits, show the status of each affected file,
637 using the following status codes:
638 .Bl -column YXZ description
639 .It G Ta file was merged
640 .It C Ta file was merged and conflicts occurred during merge
641 .It ! Ta changes destined for a missing file were not merged
642 .It D Ta file was deleted
643 .It d Ta file's deletion was obstructed by local modifications
644 .It A Ta new file was added
645 .It ~ Ta changes destined for a non-regular file were not merged
646 .El
647 .Pp
648 If merge conflicts occur the rebase operation is interrupted and may
649 be continued once conflicts have been resolved.
650 Alternatively, the rebase operation may be aborted which will leave
651 .Ar branch
652 unmodified and the work tree switched back to its original branch.
653 .Pp
654 If a merge conflict is resolved in a way which renders the merged
655 change into a no-op change, the corresponding commit will be elided
656 when the rebase operation continues.
657 .Pp
658 .Cm got rebase
659 will refuse to run if certain preconditions are not met.
660 If the work tree contains multiple base commits it must first be updated
661 to a single base commit with
662 .Cm got update .
663 If the work tree contains local changes, these changes must first be
664 committed with
665 .Cm got commit
666 or reverted with
667 .Cm got revert .
668 If the
669 .Ar branch
670 contains changes to files outside of the work tree's path prefix,
671 the work tree cannot be used to rebase this branch.
672 .Pp
673 The
674 .Cm got update
675 and
676 .Cm got commit
677 commands will refuse to run while a rebase operation is in progress.
678 Other commands which manipulate the work tree may be used for
679 conflict resolution purposes.
680 .Pp
681 The options for
682 .Cm got rebase
683 are as follows:
684 .Bl -tag -width Ds
685 .It Fl a
686 Abort an interrupted rebase operation.
687 If this option is used, no further command-line arguments are allowed.
688 .It Fl c
689 Continue an interrupted rebase operation.
690 If this option is used, no further command-line arguments are allowed.
691 .El
692 .It Cm rb
693 Short alias for
694 .Cm rebase .
695 .It Cm histedit [ Fl a ] [ Fl c] [ Fl F Ar histedit-script ]
696 Edit commit history between the work tree's current base commit and
697 the tip commit of the work tree's current branch.
698 .Pp
699 Editing of commit history is controlled via a
700 .Ar histedit script
701 which can be edited interactively or passed on the command line.
702 The format of the histedit script is line-based.
703 Each line in the script begins with a command name, followed by
704 whitespace and an argument.
705 For most commands, the expected argument is a commit ID SHA1 hash.
706 Any remaining text on the line is ignored.
707 Lines which begin with the
708 .Sq #
709 character are ignored entirely.
710 .Pp
711 The available commands are as follows:
712 .Bl -column YXZ pick-commit
713 .It pick Ar commit Ta Use the specified commit as it is.
714 .It edit Ar commit Ta Use the specified commit but once changes have been
715 merged into the work tree interrupt the histedit operation for amending.
716 .It fold Ar commit Ta Combine the specified commit with the next commit
717 listed further below that will be used.
718 .It drop Ar commit Ta Remove this commit from the edited history.
719 .It mesg Ar log-message Ta Use the specified single-line log message for
720 the commit on the previous line.
721 If the log message argument is left empty, open an editor where a new
722 log message can be written.
723 .El
724 .Pp
725 Every commit in the history being edited must be mentioned in the script.
726 Lines may be re-ordered to change the order of commits in the edited history.
727 .Pp
728 Edited commits are accumulated on a temporary branch.
729 Once history editing has completed successfully, the temporary branch becomes
730 the new version of the work tree's branch and the work tree is automatically
731 switched to it.
732 .Pp
733 While merging commits, show the status of each affected file,
734 using the following status codes:
735 .Bl -column YXZ description
736 .It G Ta file was merged
737 .It C Ta file was merged and conflicts occurred during merge
738 .It ! Ta changes destined for a missing file were not merged
739 .It D Ta file was deleted
740 .It d Ta file's deletion was obstructed by local modifications
741 .It A Ta new file was added
742 .It ~ Ta changes destined for a non-regular file were not merged
743 .El
744 .Pp
745 If merge conflicts occur the histedit operation is interrupted and may
746 be continued once conflicts have been resolved.
747 Alternatively, the histedit operation may be aborted which will leave
748 the work tree switched back to its original branch.
749 .Pp
750 If a merge conflict is resolved in a way which renders the merged
751 change into a no-op change, the corresponding commit will be elided
752 when the histedit operation continues.
753 .Pp
754 .Cm got histedit
755 will refuse to run if certain preconditions are not met.
756 If the work tree contains multiple base commits it must first be updated
757 to a single base commit with
758 .Cm got update .
759 If the work tree contains local changes, these changes must first be
760 committed with
761 .Cm got commit
762 or reverted with
763 .Cm got revert .
764 If the edited history contains changes to files outside of the work tree's
765 path prefix, the work tree cannot be used to edit the history of this branch.
766 .Pp
767 The
768 .Cm got update
769 command will refuse to run while a histedit operation is in progress.
770 Other commands which manipulate the work tree may be used, and the
771 .Cm got commit
772 command may be used to commit arbitrary changes to the temporary branch
773 while the histedit operation is interrupted.
774 .Pp
775 The options for
776 .Cm got histedit
777 are as follows:
778 .Bl -tag -width Ds
779 .It Fl a
780 Abort an interrupted histedit operation.
781 If this option is used, no further command-line arguments are allowed.
782 .It Fl c
783 Continue an interrupted histedit operation.
784 If this option is used, no further command-line arguments are allowed.
785 .El
786 .It Cm he
787 Short alias for
788 .Cm histedit .
789 .El
790 .Sh ENVIRONMENT
791 .Bl -tag -width GOT_AUTHOR
792 .It Ev GOT_AUTHOR
793 The author's name and email address for
794 .Cm got commit
795 and
796 .Cm got import ,
797 for example:
798 .An Stefan Sperling Aq Mt stsp@openbsd.org
799 .It Ev VISUAL, Ev EDITOR
800 The editor spawned by
801 .Cm got commit .
802 .El
803 .Sh EXIT STATUS
804 .Ex -std got
805 .Sh EXAMPLES
806 Clone an existing Git repository for use with
807 .Nm .
808 This step currently requires
809 .Xr git 1 :
810 .Pp
811 .Dl $ cd /var/git/
812 .Dl $ git clone --bare https://github.com/openbsd/src.git
813 .Pp
814 Alternatively, for quick and dirty local testing of
815 .Nm
816 a new Git repository could be created and populated with files,
817 e.g. from a temporary CVS checkout located at
818 .Pa /tmp/src :
819 .Pp
820 .Dl $ got init /var/git/src.git
821 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
822 .Pp
823 Check out a work tree from the Git repository to /usr/src:
824 .Pp
825 .Dl $ got checkout /var/git/src.git /usr/src
826 .Pp
827 View local changes in a work tree directory:
828 .Pp
829 .Dl $ got status
830 .Dl $ got diff | less
831 .Pp
832 In a work tree or a git repository directory, list all branch references:
833 .Pp
834 .Dl $ got branch -l
835 .Pp
836 In a work tree or a git repository directory, create a new branch called
837 .Dq unified-buffer-cache
838 which is forked off the
839 .Dq master
840 branch:
841 .Pp
842 .Dl $ got branch unified-buffer-cache master
843 .Pp
844 Switch an existing work tree to the branch
845 .Dq unified-buffer-cache .
846 Local changes in the work tree will be preserved and merged if necessary:
847 .Pp
848 .Dl $ got update -b unified-buffer-cache
849 .Pp
850 Create a new commit from local changes in a work tree directory.
851 This new commit will become the head commit of the work tree's current branch:
852 .Pp
853 .Dl $ got commit
854 .Pp
855 In a work tree or a git repository directory, view changes committed in
856 the 3 most recent commits to the work tree's branch, or the branch resolved
857 via the repository's HEAD reference, respectively:
858 .Pp
859 .Dl $ got log -p -l 3 -f
860 .Pp
861 Add new files and remove obsolete files in a work tree directory:
862 .Pp
863 .Dl $ got add sys/uvm/uvm_ubc.c
864 .Dl $ got remove sys/uvm/uvm_vnode.c
865 .Pp
866 Create a new commit from local changes in a work tree directory
867 with a pre-defined log message.
868 .Pp
869 .Dl $ got commit -m 'unify the buffer cache'
870 .Pp
871 Update any work tree checked out from the
872 .Dq unified-buffer-cache
873 branch to the latest commit on this branch:
874 .Pp
875 .Dl $ got update
876 .Pp
877 Roll file content on the unified-buffer-cache branch back by one commit,
878 and then fetch the rolled-back change into the work tree as a local change
879 to be amended and perhaps committed again:
880 .Pp
881 .Dl $ got backout unified-buffer-cache
882 .Dl $ got commit -m 'roll back previous'
883 .Dl $ # now back out the previous backout :-)
884 .Dl $ got backout unified-buffer-cache
885 .Pp
886 Fetch new upstream commits into the local repository's master branch.
887 This step currently requires
888 .Xr git 1 :
889 .Pp
890 .Dl $ cd /var/git/src.git
891 .Dl $ git fetch origin master:master
892 .Pp
893 Rebase the
894 .Dq unified-buffer-cache
895 branch on top of the new head commit of the
896 .Dq master
897 branch.
898 .Pp
899 .Dl $ got update -b master
900 .Dl $ got rebase unified-buffer-cache
901 .Pp
902 Create a patch from all changes on the unified-buffer-cache branch.
903 The patch can be mailed out for review and applied to OpenBSD's CVS tree:
904 .Pp
905 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
906 .Pp
907 Edit the entire commit history of the
908 .Dq unified-buffer-cache
909 branch:
910 .Pp
911 .Dl $ got update -b unified-buffer-cache
912 .Dl $ got update -c master
913 .Dl $ got histedit
914 .Pp
915 .Sh SEE ALSO
916 .Xr tog 1 ,
917 .Xr git-repository 5 ,
918 .Xr got-worktree 5
919 .Sh AUTHORS
920 .An Stefan Sperling Aq Mt stsp@openbsd.org
921 .An Martin Pieuchot Aq Mt mpi@openbsd.org
922 .An joshua stein Aq Mt jcs@openbsd.org
923 .Sh CAVEATS
924 .Nm
925 is a work-in-progress and many commands remain to be implemented.
926 At present, the user has to fall back on
927 .Xr git 1
928 to perform tasks related to repository administration and tasks
929 which require a network connection.
930 .Pp
931 When working against a repository created with
932 .Dq git clone --bare ,
933 local commits to the
934 .Dq master
935 branch are discouraged, for now, if changes committed to the upstream
936 repository need to be tracked.
937 See the EXAMPLES section.
938 Future built-in
939 .Cm clone
940 and
941 .Cm fetch
942 commands should alleviate this problem.