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 and exit immediately.
57 .It Fl V
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 .Pp
77 .It Cm in
78 Short alias for
79 .Cm init .
80 .It Cm import [ Fl b Ar branch ] [ Fl m Ar message ] [ Fl r Ar repository-path ] [ Fl I Ar pattern ] directory
81 Create an initial commit in a repository from the file hierarchy
82 within the specified
83 .Ar directory .
84 The created commit will not have any parent commits, i.e. it will be a
85 root commit.
86 Also create a new reference which provides a branch name for the newly
87 created commit.
88 Show the path of each imported file to indicate progress.
89 .Pp
90 The
91 .Cm got import
92 command requires the
93 .Ev GOT_AUTHOR
94 environment variable to be set.
95 .Pp
96 The options for
97 .Cm got import
98 are as follows:
99 .Bl -tag -width Ds
100 .It Fl b Ar branch
101 Create the specified
102 .Ar branch
103 instead of creating the default branch
104 .Dq master .
105 Use of this option is required if the
106 .Dq master
107 branch already exists.
108 .It Fl m Ar message
109 Use the specified log message when creating the new commit.
110 Without the
111 .Fl m
112 option,
113 .Cm got import
114 opens a temporary file in an editor where a log message can be written.
115 .It Fl r Ar repository-path
116 Use the repository at the specified path.
117 If not specified, assume the repository is located at or above the current
118 working directory.
119 .It Fl I Ar pattern
120 Ignore files or directories with a name which matches the specified
121 .Ar pattern .
122 This option may be specified multiple times to build a list of ignore patterns.
123 The
124 .Ar pattern
125 follows the globbing rules documented in
126 .Xr glob 7 .
127 .El
128 .It Cm im
129 Short alias for
130 .Cm import .
131 .It Cm checkout [ Fl b Ar branch ] [ Fl c Ar commit ] [ Fl p Ar path-prefix ] repository-path [ work-tree-path ]
132 Copy files from a repository into a new work tree.
133 If the
134 .Ar work tree path
135 is not specified, either use the last component of
136 .Ar repository path ,
137 or if a
138 .Ar path prefix
139 was specified use the last component of
140 .Ar path prefix .
141 .Pp
142 The options for
143 .Cm got checkout
144 are as follows:
145 .Bl -tag -width Ds
146 .It Fl b Ar branch
147 Check out files from a commit on the specified
148 .Ar branch .
149 If this option is not specified, a branch resolved via the repository's HEAD
150 reference will be used.
151 .It Fl c Ar commit
152 Check out files from the specified
153 .Ar commit
154 on the selected branch.
155 The expected argument is a commit ID SHA1 hash or an existing reference
156 which will be resolved to a commit ID.
157 An abbreviated hash argument will be expanded to a full SHA1 hash
158 automatically, provided the abbreviation is unique.
159 If this option is not specified, the most recent commit on the selected
160 branch will be used.
161 .It Fl p Ar path-prefix
162 Restrict the work tree to a subset of the repository's tree hierarchy.
163 Only files beneath the specified
164 .Ar path-prefix
165 will be checked out.
166 .El
167 .It Cm co
168 Short alias for
169 .Cm checkout .
170 .It Cm update [ Fl b Ar branch ] [ Fl c Ar commit ] [ Ar path ... ]
171 Update an existing work tree to a different commit.
172 Show the status of each affected file, using the following status codes:
173 .Bl -column YXZ description
174 .It U Ta file was updated and contained no local changes
175 .It G Ta file was updated and local changes were merged cleanly
176 .It C Ta file was updated and conflicts occurred during merge
177 .It D Ta file was deleted
178 .It A Ta new file was added
179 .It ~ Ta versioned file is obstructed by a non-regular file
180 .It ! Ta a missing versioned file was restored
181 .El
182 .Pp
183 If no
184 .Ar path
185 is specified, update the entire work tree.
186 Otherwise, restrict the update operation to files at or within the
187 specified paths.
188 Each path is required to exist in the update operation's target commit.
189 Files in the work tree outside specified paths will remain unchanged and
190 will retain their previously recorded base commit.
191 Some
192 .Nm
193 commands may refuse to run while the work tree contains files from
194 multiple base commits.
195 The base commit of such a work tree can be made consistent by running
196 .Cm got update
197 across the entire work tree.
198 Specifying a
199 .Ar path
200 is incompatible with the
201 .Fl b
202 option.
203 .Pp
204 .Cm got update
205 cannot update paths with staged changes.
206 If changes have been staged with
207 .Cm got stage ,
208 these changes must first be comitted with
209 .Cm got commit
210 or unstaged with
211 .Cm got unstage .
212 .Pp
213 The options for
214 .Cm got update
215 are as follows:
216 .Bl -tag -width Ds
217 .It Fl b Ar branch
218 Switch the work tree's branch reference to the specified
219 .Ar branch
220 before updating the work tree.
221 This option requires that all paths in the work tree are updated.
222 .It Fl c Ar commit
223 Update the work tree to the specified
224 .Ar commit .
225 The expected argument is a commit ID SHA1 hash or an existing reference
226 which will be resolved to a commit ID.
227 An abbreviated hash argument will be expanded to a full SHA1 hash
228 automatically, provided the abbreviation is unique.
229 If this option is not specified, the most recent commit on the work tree's
230 branch will be used.
231 .El
232 .It Cm up
233 Short alias for
234 .Cm update .
235 .It Cm status [ Ar path ... ]
236 Show the current modification status of files in a work tree,
237 using the following status codes:
238 .Bl -column YXZ description
239 .It M Ta modified file
240 .It A Ta file scheduled for addition in next commit
241 .It D Ta file scheduled for deletion in next commit
242 .It C Ta modified or added file which contains merge conflicts
243 .It ! Ta versioned file was expected on disk but is missing
244 .It ~ Ta versioned file is obstructed by a non-regular file
245 .It ? Ta unversioned item not tracked by
246 .Nm
247 .El
248 .Pp
249 If no
250 .Ar path
251 is specified, show modifications in the entire work tree.
252 Otherwise, show modifications at or within the specified paths.
253 .Pp
254 If changes have been staged with
255 .Cm got stage ,
256 staged changes are shown in the second output column, using the following
257 status codes:
258 .Bl -column YXZ description
259 .It M Ta file modification is staged
260 .It A Ta file addition is staged
261 .It D Ta file deletion is staged
262 .El
263 .Pp
264 Changes created on top of staged changes are indicated in the first column:
265 .Bl -column YXZ description
266 .It MM Ta file was modified after earlier changes have been staged
267 .It MA Ta file was modified after having been staged for addition
268 .El
269 .It Cm st
270 Short alias for
271 .Cm status .
272 .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 ]
273 Display history of a repository.
274 If a
275 .Ar path
276 is specified, show only commits which modified this path.
277 .Pp
278 The options for
279 .Cm got log
280 are as follows:
281 .Bl -tag -width Ds
282 .It Fl c Ar commit
283 Start traversing history at the specified
284 .Ar commit .
285 The expected argument is a commit ID SHA1 hash or an existing reference
286 which will be resolved to a commit ID.
287 An abbreviated hash argument will be expanded to a full SHA1 hash
288 automatically, provided the abbreviation is unique.
289 If this option is not specified, default to the work tree's current branch
290 if invoked in a work tree, or to the repository's HEAD reference.
291 .It Fl C Ar number
292 Set the number of context lines shown in diffs with
293 .Fl p .
294 By default, 3 lines of context are shown.
295 .It Fl f
296 Restrict history traversal to the first parent of each commit.
297 This shows the linear history of the current branch only.
298 Merge commits which affected the current branch will be shown but
299 individual commits which originated on other branches will be omitted.
300 .It Fl l Ar N
301 Limit history traversal to a given number of commits.
302 .It Fl p
303 Display the patch of modifications made in each commit.
304 .It Fl r Ar repository-path
305 Use the repository at the specified path.
306 If not specified, assume the repository is located at or above the current
307 working directory.
308 If this directory is a
309 .Nm
310 work tree, use the repository path associated with this work tree.
311 .El
312 .It Cm diff [ Fl C Ar number ] [ Fl r Ar repository-path ] [ Fl s ] [ Ar object1 Ar object2 | Ar path ]
313 When invoked within a work tree with less than two arguments, display
314 uncommitted changes in the work tree.
315 If a
316 .Ar path
317 is specified, only show changes within this path.
318 .Pp
319 If two arguments are provided, treat each argument as a reference,
320 or an object ID SHA1 hash, and display differences between these objects.
321 Both objects must be of the same type (blobs, trees, or commits).
322 An abbreviated hash argument will be expanded to a full SHA1 hash
323 automatically, provided the abbreviation is unique.
324 .Pp
325 The options for
326 .Cm got diff
327 are as follows:
328 .Bl -tag -width Ds
329 .It Fl C Ar number
330 Set the number of context lines shown in the diff.
331 By default, 3 lines of context are shown.
332 .It Fl r Ar repository-path
333 Use the repository at the specified path.
334 If not specified, assume the repository is located at or above the current
335 working directory.
336 If this directory is a
337 .Nm
338 work tree, use the repository path associated with this work tree.
339 .It Fl s
340 Show changes staged with
341 .Cm got stage
342 instead of showing local changes.
343 This option is only valid when
344 .Cm got diff
345 is invoked in a work tree.
346 .El
347 .It Cm di
348 Short alias for
349 .Cm diff .
350 .It Cm blame [ Fl c Ar commit ] [ Fl r Ar repository-path ] Ar path
351 Display line-by-line history of a file at the specified path.
352 .Pp
353 The options for
354 .Cm got blame
355 are as follows:
356 .Bl -tag -width Ds
357 .It Fl c Ar commit
358 Start traversing history at the specified
359 .Ar commit .
360 The expected argument is a commit ID SHA1 hash or an existing reference
361 which will be resolved to a commit ID.
362 An abbreviated hash argument will be expanded to a full SHA1 hash
363 automatically, provided the abbreviation is unique.
364 .It Fl r Ar repository-path
365 Use the repository at the specified path.
366 If not specified, assume the repository is located at or above the current
367 working directory.
368 If this directory is a
369 .Nm
370 work tree, use the repository path associated with this work tree.
371 .El
372 .It Cm bl
373 Short alias for
374 .Cm blame .
375 .It Cm tree [ Fl c Ar commit ] [ Fl r Ar repository-path ] [ Fl i ] [ Fl R] [ Ar path ]
376 Display a listing of files and directories at the specified
377 directory path in the repository.
378 Entries shown in this listing may carry one of the following trailing
379 annotations:
380 .Bl -column YXZ description
381 .It / Ta entry is a directory
382 .It * Ta entry is an executable file
383 .El
384 .Pp
385 If no
386 .Ar path
387 is specified, list the repository path corresponding to the current
388 directory of the work tree, or the root directory of the repository
389 if there is no work tree.
390 .Pp
391 The options for
392 .Cm got tree
393 are as follows:
394 .Bl -tag -width Ds
395 .It Fl c Ar commit
396 List files and directories as they appear in the specified
397 .Ar commit .
398 The expected argument is a commit ID SHA1 hash or an existing reference
399 which will be resolved to a commit ID.
400 An abbreviated hash argument will be expanded to a full SHA1 hash
401 automatically, provided the abbreviation is unique.
402 .It Fl r Ar repository-path
403 Use the repository at the specified path.
404 If not specified, assume the repository is located at or above the current
405 working directory.
406 If this directory is a
407 .Nm
408 work tree, use the repository path associated with this work tree.
409 .It Fl i
410 Show object IDs of files (blob objects) and directories (tree objects).
411 .It Fl R
412 Recurse into sub-directories in the repository.
413 .El
414 .It Cm tr
415 Short alias for
416 .Cm tree .
417 .It Cm ref [ Fl r Ar repository-path ] [ Fl l ] [ Fl d Ar name ] [ Ar name Ar target ]
418 Manage references in a repository.
419 .Pp
420 If no options are passed, expect two arguments and attempt to create,
421 or update, the reference with the given
422 .Ar name ,
423 and make it point at the given
424 .Ar target .
425 The target may be an object ID SHA1 hash or an existing reference which
426 will be resolved to an object ID.
427 An abbreviated hash argument will be expanded to a full SHA1 hash
428 automatically, provided the abbreviation is unique.
429 .Pp
430 The options for
431 .Cm got ref
432 are as follows:
433 .Bl -tag -width Ds
434 .It Fl r Ar repository-path
435 Use the repository at the specified path.
436 If not specified, assume the repository is located at or above the current
437 working directory.
438 If this directory is a
439 .Nm
440 work tree, use the repository path associated with this work tree.
441 .It Fl l
442 List all existing references in the repository.
443 .It Fl d Ar name
444 Delete the reference with the specified name from the repository.
445 .El
446 .It Cm branch [ Fl r Ar repository-path ] [ Fl l ] [ Fl d Ar name ] [ Ar name [ Ar base-branch ] ]
447 Manage branches in a repository.
448 .Pp
449 Branches are managed via references which live in the
450 .Dq refs/heads/
451 reference namespace.
452 The
453 .Cm got branch
454 command operates on references in this namespace only.
455 .Pp
456 If no options are passed, expect one or two arguments and attempt to create
457 a branch with the given
458 .Ar name ,
459 and make it point at the given
460 .Ar base-branch .
461 If no
462 .Ar base-branch
463 is specified, default to the work tree's current branch if invoked in a
464 work tree, or to the repository's HEAD reference.
465 .Pp
466 The options for
467 .Cm got branch
468 are as follows:
469 .Bl -tag -width Ds
470 .It Fl r Ar repository-path
471 Use the repository at the specified path.
472 If not specified, assume the repository is located at or above the current
473 working directory.
474 If this directory is a
475 .Nm
476 work tree, use the repository path associated with this work tree.
477 .It Fl l
478 List all existing branches in the repository.
479 If invoked in a work tree, the work tree's current branch is shown
480 with one the following annotations:
481 .Bl -column YXZ description
482 .It * Ta work tree's base commit matches the branch tip
483 .It ~ Ta work tree's base commit is out-of-date
484 .El
485 .It Fl d Ar name
486 Delete the branch with the specified name from the repository.
487 Only the branch reference is deleted.
488 Any commit, tree, and blob objects belonging to the branch
489 remain in the repository and may be removed separately with
490 Git's garbage collector.
491 .El
492 .It Cm br
493 Short alias for
494 .Cm branch .
495 .It Cm add Ar file-path ...
496 Schedule unversioned files in a work tree for addition to the
497 repository in the next commit.
498 .It Cm remove Ar file-path ...
499 Remove versioned files from a work tree and schedule them for deletion
500 from the repository in the next commit.
501 .Pp
502 The options for
503 .Cm got remove
504 are as follows:
505 .Bl -tag -width Ds
506 .It Fl f
507 Perform the operation even if a file contains uncommitted modifications.
508 .El
509 .It Cm rm
510 Short alias for
511 .Cm remove .
512 .It Cm revert Ar file-path ...
513 Revert any uncommited changes in files at the specified paths.
514 File contents will be overwritten with those contained in the
515 work tree's base commit. There is no way to bring discarded
516 changes back after
517 .Cm got revert !
518 .Pp
519 If a file was added with
520 .Cm got add
521 it will become an unversioned file again.
522 If a file was deleted with
523 .Cm got remove
524 it will be restored.
525 .It Cm rv
526 Short alias for
527 .Cm revert .
528 .It Cm commit [ Fl m Ar message ] [ path ... ]
529 Create a new commit in the repository from changes in a work tree
530 and use this commit as the new base commit for the work tree.
531 If no
532 .Ar path
533 is specified, commit all changes in the work tree.
534 Otherwise, commit changes at or within the specified paths.
535 .Pp
536 If changes have been explicitly staged for commit with
537 .Cm got stage,
538 only commit staged changes and reject any specified paths which
539 have not been staged.
540 .Pp
541 Show the status of each affected file, using the following status codes:
542 .Bl -column YXZ description
543 .It M Ta modified file
544 .It D Ta file was deleted
545 .It A Ta new file was added
546 .El
547 .Pp
548 Files which are not part of the new commit will retain their previously
549 recorded base commit.
550 Some
551 .Nm
552 commands may refuse to run while the work tree contains files from
553 multiple base commits.
554 The base commit of such a work tree can be made consistent by running
555 .Cm got update
556 across the entire work tree.
557 .Pp
558 The
559 .Cm got commit
560 command requires the
561 .Ev GOT_AUTHOR
562 environment variable to be set.
563 .Pp
564 The options for
565 .Cm got commit
566 are as follows:
567 .Bl -tag -width Ds
568 .It Fl m Ar message
569 Use the specified log message when creating the new commit.
570 Without the
571 .Fl m
572 option,
573 .Cm got commit
574 opens a temporary file in an editor where a log message can be written.
575 .El
576 .Pp
577 .Cm got commit
578 will refuse to run if certain preconditions are not met.
579 If the work tree's current branch is not in the
580 .Dq refs/heads/
581 reference namespace, new commits may not be created on this branch.
582 Local changes may only be committed if they are based on file content
583 found in the most recent commit on the work tree's branch.
584 If a path is found to be out of date,
585 .Cm got update
586 must be used first in order to merge local changes with changes made
587 in the repository.
588 .It Cm ci
589 Short alias for
590 .Cm commit .
591 .It Cm cherrypick Ar commit
592 Merge changes from a single
593 .Ar commit
594 into the work tree.
595 The specified
596 .Ar commit
597 must be on a different branch than the work tree's base commit.
598 The expected argument is a reference or a commit ID SHA1 hash.
599 An abbreviated hash argument will be expanded to a full SHA1 hash
600 automatically, provided the abbreviation is unique.
601 .Pp
602 Show the status of each affected file, using the following status codes:
603 .Bl -column YXZ description
604 .It G Ta file was merged
605 .It C Ta file was merged and conflicts occurred during merge
606 .It ! Ta changes destined for a missing file were not merged
607 .It D Ta file was deleted
608 .It d Ta file's deletion was obstructed by local modifications
609 .It A Ta new file was added
610 .It ~ Ta changes destined for a non-regular file were not merged
611 .El
612 .Pp
613 The merged changes will appear as local changes in the work tree, which
614 may be viewed with
615 .Cm got diff ,
616 amended manually or with further
617 .Cm got cherrypick
618 comands,
619 committed with
620 .Cm got commit ,
621 or discarded again with
622 .Cm got revert .
623 .Pp
624 .Cm got cherrypick
625 will refuse to run if certain preconditions are not met.
626 If the work tree contains multiple base commits it must first be updated
627 to a single base commit with
628 .Cm got update .
629 If the work tree already contains files with merge conflicts, these
630 conflicts must be resolved first.
631 .It Cm cy
632 Short alias for
633 .Cm cherrypick .
634 .It Cm backout Ar commit
635 Reverse-merge changes from a single
636 .Ar commit
637 into the work tree.
638 The specified
639 .Ar commit
640 must be on the same branch as the work tree's base commit.
641 The expected argument is a reference or a commit ID SHA1 hash.
642 An abbreviated hash argument will be expanded to a full SHA1 hash
643 automatically, provided the abbreviation is unique.
644 .Pp
645 Show the status of each affected file, using the following status codes:
646 .Bl -column YXZ description
647 .It G Ta file was merged
648 .It C Ta file was merged and conflicts occurred during merge
649 .It ! Ta changes destined for a missing file were not merged
650 .It D Ta file was deleted
651 .It d Ta file's deletion was obstructed by local modifications
652 .It A Ta new file was added
653 .It ~ Ta changes destined for a non-regular file were not merged
654 .El
655 .Pp
656 The reverse-merged changes will appear as local changes in the work tree,
657 which may be viewed with
658 .Cm got diff ,
659 amended manually or with further
660 .Cm got backout
661 comands,
662 committed with
663 .Cm got commit ,
664 or discarded again with
665 .Cm got revert .
666 .Pp
667 .Cm got backout
668 will refuse to run if certain preconditions are not met.
669 If the work tree contains multiple base commits it must first be updated
670 to a single base commit with
671 .Cm got update .
672 If the work tree already contains files with merge conflicts, these
673 conflicts must be resolved first.
674 .It Cm bo
675 Short alias for
676 .Cm backout .
677 .It Cm rebase [ Fl a ] [ Fl c] [ Ar branch ]
678 Rebase commits on the specified
679 .Ar branch
680 onto the tip of the current branch of the work tree.
681 The
682 .Ar branch
683 must share common ancestry with the work tree's current branch.
684 Rebasing begins with the first descendent commit of the youngest
685 common ancestor commit shared by the specified
686 .Ar branch
687 and the work tree's current branch, and stops once the tip commit
688 of the specified
689 .Ar branch
690 has been rebased.
691 .Pp
692 Rebased commits are accumulated on a temporary branch which the work tree
693 will remain switched to throughout the entire rebase operation.
694 Commits on this branch represent the same changes with the same log
695 messages as their counterparts on the original
696 .Ar branch ,
697 but with different commit IDs.
698 Once rebasing has completed successfully, the temporary branch becomes
699 the new version of the specified
700 .Ar branch
701 and the work tree is automatically switched to it.
702 .Pp
703 While rebasing commits, show the status of each affected file,
704 using the following status codes:
705 .Bl -column YXZ description
706 .It G Ta file was merged
707 .It C Ta file was merged and conflicts occurred during merge
708 .It ! Ta changes destined for a missing file were not merged
709 .It D Ta file was deleted
710 .It d Ta file's deletion was obstructed by local modifications
711 .It A Ta new file was added
712 .It ~ Ta changes destined for a non-regular file were not merged
713 .El
714 .Pp
715 If merge conflicts occur the rebase operation is interrupted and may
716 be continued once conflicts have been resolved.
717 Alternatively, the rebase operation may be aborted which will leave
718 .Ar branch
719 unmodified and the work tree switched back to its original branch.
720 .Pp
721 If a merge conflict is resolved in a way which renders the merged
722 change into a no-op change, the corresponding commit will be elided
723 when the rebase operation continues.
724 .Pp
725 .Cm got rebase
726 will refuse to run if certain preconditions are not met.
727 If the work tree contains multiple base commits it must first be updated
728 to a single base commit with
729 .Cm got update .
730 If changes have been staged with
731 .Cm got stage ,
732 these changes must first be comitted with
733 .Cm got commit
734 or unstaged with
735 .Cm got unstage .
736 If the work tree contains local changes, these changes must first be
737 committed with
738 .Cm got commit
739 or reverted with
740 .Cm got revert .
741 If the
742 .Ar branch
743 contains changes to files outside of the work tree's path prefix,
744 the work tree cannot be used to rebase this branch.
745 .Pp
746 The
747 .Cm got update
748 and
749 .Cm got commit
750 commands will refuse to run while a rebase operation is in progress.
751 Other commands which manipulate the work tree may be used for
752 conflict resolution purposes.
753 .Pp
754 The options for
755 .Cm got rebase
756 are as follows:
757 .Bl -tag -width Ds
758 .It Fl a
759 Abort an interrupted rebase operation.
760 If this option is used, no further command-line arguments are allowed.
761 .It Fl c
762 Continue an interrupted rebase operation.
763 If this option is used, no further command-line arguments are allowed.
764 .El
765 .It Cm rb
766 Short alias for
767 .Cm rebase .
768 .It Cm histedit [ Fl a ] [ Fl c] [ Fl F Ar histedit-script ]
769 Edit commit history between the work tree's current base commit and
770 the tip commit of the work tree's current branch.
771 .Pp
772 Editing of commit history is controlled via a
773 .Ar histedit script
774 which can be edited interactively or passed on the command line.
775 The format of the histedit script is line-based.
776 Each line in the script begins with a command name, followed by
777 whitespace and an argument.
778 For most commands, the expected argument is a commit ID SHA1 hash.
779 Any remaining text on the line is ignored.
780 Lines which begin with the
781 .Sq #
782 character are ignored entirely.
783 .Pp
784 The available commands are as follows:
785 .Bl -column YXZ pick-commit
786 .It pick Ar commit Ta Use the specified commit as it is.
787 .It edit Ar commit Ta Use the specified commit but once changes have been
788 merged into the work tree interrupt the histedit operation for amending.
789 .It fold Ar commit Ta Combine the specified commit with the next commit
790 listed further below that will be used.
791 .It drop Ar commit Ta Remove this commit from the edited history.
792 .It mesg Ar log-message Ta Use the specified single-line log message for
793 the commit on the previous line.
794 If the log message argument is left empty, open an editor where a new
795 log message can be written.
796 .El
797 .Pp
798 Every commit in the history being edited must be mentioned in the script.
799 Lines may be re-ordered to change the order of commits in the edited history.
800 .Pp
801 Edited commits are accumulated on a temporary branch which the work tree
802 will remain switched to throughout the entire histedit operation.
803 Once history editing has completed successfully, the temporary branch becomes
804 the new version of the work tree's branch and the work tree is automatically
805 switched to it.
806 .Pp
807 While merging commits, show the status of each affected file,
808 using the following status codes:
809 .Bl -column YXZ description
810 .It G Ta file was merged
811 .It C Ta file was merged and conflicts occurred during merge
812 .It ! Ta changes destined for a missing file were not merged
813 .It D Ta file was deleted
814 .It d Ta file's deletion was obstructed by local modifications
815 .It A Ta new file was added
816 .It ~ Ta changes destined for a non-regular file were not merged
817 .El
818 .Pp
819 If merge conflicts occur the histedit operation is interrupted and may
820 be continued once conflicts have been resolved.
821 Alternatively, the histedit operation may be aborted which will leave
822 the work tree switched back to its original branch.
823 .Pp
824 If a merge conflict is resolved in a way which renders the merged
825 change into a no-op change, the corresponding commit will be elided
826 when the histedit operation continues.
827 .Pp
828 .Cm got histedit
829 will refuse to run if certain preconditions are not met.
830 If the work tree's current branch is not in the
831 .Dq refs/heads/
832 reference namespace, the history of the branch may not be edited.
833 If the work tree contains multiple base commits it must first be updated
834 to a single base commit with
835 .Cm got update .
836 If changes have been staged with
837 .Cm got stage ,
838 these changes must first be comitted with
839 .Cm got commit
840 or unstaged with
841 .Cm got unstage .
842 If the work tree contains local changes, these changes must first be
843 committed with
844 .Cm got commit
845 or reverted with
846 .Cm got revert .
847 If the edited history contains changes to files outside of the work tree's
848 path prefix, the work tree cannot be used to edit the history of this branch.
849 .Pp
850 The
851 .Cm got update
852 command will refuse to run while a histedit operation is in progress.
853 Other commands which manipulate the work tree may be used, and the
854 .Cm got commit
855 command may be used to commit arbitrary changes to the temporary branch
856 while the histedit operation is interrupted.
857 .Pp
858 The options for
859 .Cm got histedit
860 are as follows:
861 .Bl -tag -width Ds
862 .It Fl a
863 Abort an interrupted histedit operation.
864 If this option is used, no further command-line arguments are allowed.
865 .It Fl c
866 Continue an interrupted histedit operation.
867 If this option is used, no further command-line arguments are allowed.
868 .El
869 .It Cm he
870 Short alias for
871 .Cm histedit .
872 .It Cm stage [ Fl l ] [ Fl p ] [ Fl F Ar response-script ] [ Ar path ... ]
873 Stage local changes for inclusion in the next commit.
874 If no
875 .Ar path
876 is specified, stage all changes in the work tree.
877 Otherwise, stage changes at or within the specified paths.
878 Paths may be staged if they are added, modified, or deleted according to
879 .Cm got status .
880 .Pp
881 Show the status of each affected file, using the following status codes:
882 .Bl -column YXZ description
883 .It A Ta file addition has been staged
884 .It M Ta file modification has been staged
885 .It D Ta file deletion has been staged
886 .El
887 .Pp
888 Staged file contents are saved in newly created blob objects in the repository.
889 These blobs will be referred to by tree objects once staged changes have been
890 committed.
891 .Pp
892 Staged changes affect the behaviour of
893 .Cm got commit ,
894 .Cm got status ,
895 and
896 .Cm got diff .
897 While paths with staged changes exist, the
898 .Cm got commit
899 command will refuse to commit any paths which do not have staged changes.
900 Local changes created on top of staged changes can only be committed if
901 the path is staged again, or if the staged changes are committed first.
902 The
903 .Cm got status
904 command will show both local changes and staged changes.
905 The
906 .Cm got diff
907 command is able to display local changes relative to staged changes,
908 and to display staged changes relative to the repository.
909 The
910 .Cm got revert
911 command cannot revert staged changes but may be used to revert
912 local changes created on top of staged changes.
913 .Pp
914 The options for
915 .Cm got stage
916 are as follows:
917 .Bl -tag -width Ds
918 .It Fl l
919 Instead of staging new changes, list paths which are already staged,
920 along with the IDs of staged blob objects and stage status codes.
921 If paths were provided in the command line show the staged paths
922 among the specified paths. Otherwise, show all staged paths.
923 .It Fl p
924 Instead of staging the entire content of a changed file, interactively
925 select or reject changes for staging based on
926 .Dq y
927 (stage change),
928 .Dq n
929 (reject change), and
930 .Dq q
931 (quit staging this file) responses.
932 If a file is in modified status, individual patches derived from the
933 modified file content can be staged.
934 Files in added or deleted status may only be staged or rejected in
935 their entirety.
936 .It Fl F Ar response-script
937 With the
938 .Fl p
939 option, read
940 .Dq y ,
941 .Dq n ,
942 and
943 .Dq q
944 responses line-by-line from the specified
945 .Ar response-script
946 file instead of prompting interactively.
947 .El
948 .Pp
949 .Cm got stage
950 will refuse to run if certain preconditions are not met.
951 If a file contains merge conflicts, these conflicts must be resolved first.
952 If a file is found to be out of date relative to the head commit on the
953 work tree's current branch, the file must be updated with
954 .Cm got update
955 before it can be staged (however, this does not prevent the file from
956 becoming out-of-date at some point after having been staged).
957 .Pp
958 The
959 .Cm got update ,
960 .Cm got rebase ,
961 and
962 .Cm got histedit
963 commands will refuse to run while staged changes exist.
964 If staged changes cannot be committed because a staged path
965 is out of date, the path must be unstaged with
966 .Cm got unstage
967 before it can be updated with
968 .Cm got update ,
969 and may then be staged again if necessary.
970 .It Cm sg
971 Short alias for
972 .Cm stage .
973 .It Cm unstage [ Fl p ] [ Fl F Ar response-script ] [ Ar path ... ]
974 Merge staged changes back into the work tree and put affected paths
975 back into non-staged status.
976 If no
977 .Ar path
978 is specified, unstage all staged changes across the entire work tree.
979 Otherwise, unstage changes at or within the specified paths.
980 .Pp
981 Show the status of each affected file, using the following status codes:
982 .Bl -column YXZ description
983 .It G Ta file was unstaged
984 .It C Ta file was unstaged and conflicts occurred during merge
985 .It ! Ta changes destined for a missing file were not merged
986 .It D Ta file was staged as deleted and still is deleted
987 .It d Ta file's deletion was obstructed by local modifications
988 .It ~ Ta changes destined for a non-regular file were not merged
989 .El
990 .Pp
991 The options for
992 .Cm got unstage
993 are as follows:
994 .Bl -tag -width Ds
995 .It Fl p
996 Instead of unstaging the entire content of a changed file, interactively
997 select or reject changes for unstaging based on
998 .Dq y
999 (unstage change),
1000 .Dq n
1001 (keep change staged), and
1002 .Dq q
1003 (quit unstaging this file) responses.
1004 If a file is staged in modified status, individual patches derived from the
1005 staged file content can be unstaged.
1006 Files staged in added or deleted status may only be unstaged in their entirety.
1007 .It Fl F Ar response-script
1008 With the
1009 .Fl p
1010 option, read
1011 .Dq y ,
1012 .Dq n ,
1013 and
1014 .Dq q
1015 responses line-by-line from the specified
1016 .Ar response-script
1017 file instead of prompting interactively.
1018 .El
1019 .It Cm ug
1020 Short alias for
1021 .Cm unstage .
1022 .El
1023 .Sh ENVIRONMENT
1024 .Bl -tag -width GOT_AUTHOR
1025 .It Ev GOT_AUTHOR
1026 The author's name and email address for
1027 .Cm got commit
1028 and
1029 .Cm got import ,
1030 for example:
1031 .An Flan Hacker Aq Mt flan_hacker@openbsd.org
1032 .It Ev VISUAL, Ev EDITOR
1033 The editor spawned by
1034 .Cm got commit .
1035 .El
1036 .Sh EXIT STATUS
1037 .Ex -std got
1038 .Sh EXAMPLES
1039 Clone an existing Git repository for use with
1040 .Nm .
1041 This step currently requires
1042 .Xr git 1 :
1043 .Pp
1044 .Dl $ cd /var/git/
1045 .Dl $ git clone --bare https://github.com/openbsd/src.git
1046 .Pp
1047 Alternatively, for quick and dirty local testing of
1048 .Nm
1049 a new Git repository could be created and populated with files,
1050 e.g. from a temporary CVS checkout located at
1051 .Pa /tmp/src :
1052 .Pp
1053 .Dl $ got init /var/git/src.git
1054 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1055 .Pp
1056 Check out a work tree from the Git repository to /usr/src:
1057 .Pp
1058 .Dl $ got checkout /var/git/src.git /usr/src
1059 .Pp
1060 View local changes in a work tree directory:
1061 .Pp
1062 .Dl $ got status
1063 .Dl $ got diff | less
1064 .Pp
1065 In a work tree or a git repository directory, list all branch references:
1066 .Pp
1067 .Dl $ got branch -l
1068 .Pp
1069 In a work tree or a git repository directory, create a new branch called
1070 .Dq unified-buffer-cache
1071 which is forked off the
1072 .Dq master
1073 branch:
1074 .Pp
1075 .Dl $ got branch unified-buffer-cache master
1076 .Pp
1077 Switch an existing work tree to the branch
1078 .Dq unified-buffer-cache .
1079 Local changes in the work tree will be preserved and merged if necessary:
1080 .Pp
1081 .Dl $ got update -b unified-buffer-cache
1082 .Pp
1083 Create a new commit from local changes in a work tree directory.
1084 This new commit will become the head commit of the work tree's current branch:
1085 .Pp
1086 .Dl $ got commit
1087 .Pp
1088 In a work tree or a git repository directory, view changes committed in
1089 the 3 most recent commits to the work tree's branch, or the branch resolved
1090 via the repository's HEAD reference, respectively:
1091 .Pp
1092 .Dl $ got log -p -l 3 -f
1093 .Pp
1094 Add new files and remove obsolete files in a work tree directory:
1095 .Pp
1096 .Dl $ got add sys/uvm/uvm_ubc.c
1097 .Dl $ got remove sys/uvm/uvm_vnode.c
1098 .Pp
1099 Create a new commit from local changes in a work tree directory
1100 with a pre-defined log message.
1101 .Pp
1102 .Dl $ got commit -m 'unify the buffer cache'
1103 .Pp
1104 Update any work tree checked out from the
1105 .Dq unified-buffer-cache
1106 branch to the latest commit on this branch:
1107 .Pp
1108 .Dl $ got update
1109 .Pp
1110 Roll file content on the unified-buffer-cache branch back by one commit,
1111 and then fetch the rolled-back change into the work tree as a local change
1112 to be amended and perhaps committed again:
1113 .Pp
1114 .Dl $ got backout unified-buffer-cache
1115 .Dl $ got commit -m 'roll back previous'
1116 .Dl $ # now back out the previous backout :-)
1117 .Dl $ got backout unified-buffer-cache
1118 .Pp
1119 Fetch new upstream commits into the local repository's master branch.
1120 This step currently requires
1121 .Xr git 1 :
1122 .Pp
1123 .Dl $ cd /var/git/src.git
1124 .Dl $ git fetch origin master:master
1125 .Pp
1126 Rebase the
1127 .Dq unified-buffer-cache
1128 branch on top of the new head commit of the
1129 .Dq master
1130 branch.
1131 .Pp
1132 .Dl $ got update -b master
1133 .Dl $ got rebase unified-buffer-cache
1134 .Pp
1135 Create a patch from all changes on the unified-buffer-cache branch.
1136 The patch can be mailed out for review and applied to OpenBSD's CVS tree:
1137 .Pp
1138 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1139 .Pp
1140 Edit the entire commit history of the
1141 .Dq unified-buffer-cache
1142 branch:
1143 .Pp
1144 .Dl $ got update -b unified-buffer-cache
1145 .Dl $ got update -c master
1146 .Dl $ got histedit
1147 .Pp
1148 Additional steps are necessary if local changes need to be pushed back
1149 to the remote repository, which currently requires
1150 .Cm git fetch
1151 and
1152 .Cm git push .
1153 Before working against existing branches in a repository cloned with
1154 .Dq git clone --bare ,
1155 a Git
1156 .Dq refspec
1157 must be configured to map all references in the remote repository
1158 into the
1159 .Dq refs/remotes
1160 namespace of the local repository.
1161 This can achieved by setting Git's
1162 .Pa remote.origin.fetch
1163 configuration variable to the value
1164 .Dq +refs/heads/*:refs/remotes/origin/*
1165 with the
1166 .Cm git config
1167 command:
1168 .Pp
1169 .Dl $ cd /var/git/repo
1170 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1171 .Pp
1172 Alternatively, the following
1173 .Pa fetch
1174 configuration item can be added manually to the Git repository's
1175 .Pa config
1176 file:
1177 .Pp
1178 .Dl [remote "origin"]
1179 .Dl url = ...
1180 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1181 .Pp
1182 This configuration leaves the local repository's
1183 .Dq refs/heads
1184 namespace free for use by local branches checked out with
1185 .Cm got checkout
1186 and, if needed, created with
1187 .Cm got branch .
1188 .Pp
1189 Branches in the
1190 .Dq remotes/origin
1191 namespace can be updated with incoming changes from the remote
1192 repository with
1193 .Cm git fetch :
1194 .Pp
1195 .Dl $ cd /var/git/repo
1196 .Dl $ git fetch
1197 .Pp
1198 Before outgoing changes on the local
1199 .Dq master
1200 branch can be pushed to the remote repository, the local
1201 .Dq master
1202 branch must be rebased onto the
1203 .Dq origin/master
1204 branch:
1205 .Pp
1206 .Dl $ got update -b origin/master
1207 .Dl $ got rebase master
1208 .Pp
1209 Changes on the local
1210 .Dq master
1211 branch can then be pushed to the remote
1212 repository with
1213 .Cm git push :
1214 .Pp
1215 .Dl $ cd /var/git/repo
1216 .Dl $ git push origin master
1217 .Pp
1218 .Sh SEE ALSO
1219 .Xr tog 1 ,
1220 .Xr git-repository 5 ,
1221 .Xr got-worktree 5
1222 .Sh AUTHORS
1223 .An Stefan Sperling Aq Mt stsp@openbsd.org
1224 .An Martin Pieuchot Aq Mt mpi@openbsd.org
1225 .An joshua stein Aq Mt jcs@openbsd.org
1226 .Sh CAVEATS
1227 .Nm
1228 is a work-in-progress and many commands remain to be implemented.
1229 At present, the user has to fall back on
1230 .Xr git 1
1231 to perform many tasks, in particular tasks related to repository
1232 administration and tasks which require a network connection.