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 [ Fl R ] Ar 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 .Pp
526 The options for
527 .Cm got revert
528 are as follows:
529 .Bl -tag -width Ds
530 .It Fl R
531 Permit recursion into directories.
532 If this option is not specified,
533 .Cm got revert
534 will refuse to run if a specified
535 .Ar path
536 is a directory.
537 .El
538 .It Cm rv
539 Short alias for
540 .Cm revert .
541 .It Cm commit [ Fl m Ar message ] [ path ... ]
542 Create a new commit in the repository from changes in a work tree
543 and use this commit as the new base commit for the work tree.
544 If no
545 .Ar path
546 is specified, commit all changes in the work tree.
547 Otherwise, commit changes at or within the specified paths.
548 .Pp
549 If changes have been explicitly staged for commit with
550 .Cm got stage,
551 only commit staged changes and reject any specified paths which
552 have not been staged.
553 .Pp
554 Show the status of each affected file, using the following status codes:
555 .Bl -column YXZ description
556 .It M Ta modified file
557 .It D Ta file was deleted
558 .It A Ta new file was added
559 .El
560 .Pp
561 Files which are not part of the new commit will retain their previously
562 recorded base commit.
563 Some
564 .Nm
565 commands may refuse to run while the work tree contains files from
566 multiple base commits.
567 The base commit of such a work tree can be made consistent by running
568 .Cm got update
569 across the entire work tree.
570 .Pp
571 The
572 .Cm got commit
573 command requires the
574 .Ev GOT_AUTHOR
575 environment variable to be set.
576 .Pp
577 The options for
578 .Cm got commit
579 are as follows:
580 .Bl -tag -width Ds
581 .It Fl m Ar message
582 Use the specified log message when creating the new commit.
583 Without the
584 .Fl m
585 option,
586 .Cm got commit
587 opens a temporary file in an editor where a log message can be written.
588 .El
589 .Pp
590 .Cm got commit
591 will refuse to run if certain preconditions are not met.
592 If the work tree's current branch is not in the
593 .Dq refs/heads/
594 reference namespace, new commits may not be created on this branch.
595 Local changes may only be committed if they are based on file content
596 found in the most recent commit on the work tree's branch.
597 If a path is found to be out of date,
598 .Cm got update
599 must be used first in order to merge local changes with changes made
600 in the repository.
601 .It Cm ci
602 Short alias for
603 .Cm commit .
604 .It Cm cherrypick Ar commit
605 Merge changes from a single
606 .Ar commit
607 into the work tree.
608 The specified
609 .Ar commit
610 must be on a different branch than the work tree's base commit.
611 The expected argument is a reference or a commit ID SHA1 hash.
612 An abbreviated hash argument will be expanded to a full SHA1 hash
613 automatically, provided the abbreviation is unique.
614 .Pp
615 Show the status of each affected file, using the following status codes:
616 .Bl -column YXZ description
617 .It G Ta file was merged
618 .It C Ta file was merged and conflicts occurred during merge
619 .It ! Ta changes destined for a missing file were not merged
620 .It D Ta file was deleted
621 .It d Ta file's deletion was obstructed by local modifications
622 .It A Ta new file was added
623 .It ~ Ta changes destined for a non-regular file were not merged
624 .El
625 .Pp
626 The merged changes will appear as local changes in the work tree, which
627 may be viewed with
628 .Cm got diff ,
629 amended manually or with further
630 .Cm got cherrypick
631 comands,
632 committed with
633 .Cm got commit ,
634 or discarded again with
635 .Cm got revert .
636 .Pp
637 .Cm got cherrypick
638 will refuse to run if certain preconditions are not met.
639 If the work tree contains multiple base commits it must first be updated
640 to a single base commit with
641 .Cm got update .
642 If the work tree already contains files with merge conflicts, these
643 conflicts must be resolved first.
644 .It Cm cy
645 Short alias for
646 .Cm cherrypick .
647 .It Cm backout Ar commit
648 Reverse-merge changes from a single
649 .Ar commit
650 into the work tree.
651 The specified
652 .Ar commit
653 must be on the same branch as the work tree's base commit.
654 The expected argument is a reference or a commit ID SHA1 hash.
655 An abbreviated hash argument will be expanded to a full SHA1 hash
656 automatically, provided the abbreviation is unique.
657 .Pp
658 Show the status of each affected file, using the following status codes:
659 .Bl -column YXZ description
660 .It G Ta file was merged
661 .It C Ta file was merged and conflicts occurred during merge
662 .It ! Ta changes destined for a missing file were not merged
663 .It D Ta file was deleted
664 .It d Ta file's deletion was obstructed by local modifications
665 .It A Ta new file was added
666 .It ~ Ta changes destined for a non-regular file were not merged
667 .El
668 .Pp
669 The reverse-merged changes will appear as local changes in the work tree,
670 which may be viewed with
671 .Cm got diff ,
672 amended manually or with further
673 .Cm got backout
674 comands,
675 committed with
676 .Cm got commit ,
677 or discarded again with
678 .Cm got revert .
679 .Pp
680 .Cm got backout
681 will refuse to run if certain preconditions are not met.
682 If the work tree contains multiple base commits it must first be updated
683 to a single base commit with
684 .Cm got update .
685 If the work tree already contains files with merge conflicts, these
686 conflicts must be resolved first.
687 .It Cm bo
688 Short alias for
689 .Cm backout .
690 .It Cm rebase [ Fl a ] [ Fl c] [ Ar branch ]
691 Rebase commits on the specified
692 .Ar branch
693 onto the tip of the current branch of the work tree.
694 The
695 .Ar branch
696 must share common ancestry with the work tree's current branch.
697 Rebasing begins with the first descendent commit of the youngest
698 common ancestor commit shared by the specified
699 .Ar branch
700 and the work tree's current branch, and stops once the tip commit
701 of the specified
702 .Ar branch
703 has been rebased.
704 .Pp
705 Rebased commits are accumulated on a temporary branch which the work tree
706 will remain switched to throughout the entire rebase operation.
707 Commits on this branch represent the same changes with the same log
708 messages as their counterparts on the original
709 .Ar branch ,
710 but with different commit IDs.
711 Once rebasing has completed successfully, the temporary branch becomes
712 the new version of the specified
713 .Ar branch
714 and the work tree is automatically switched to it.
715 .Pp
716 While rebasing commits, show the status of each affected file,
717 using the following status codes:
718 .Bl -column YXZ description
719 .It G Ta file was merged
720 .It C Ta file was merged and conflicts occurred during merge
721 .It ! Ta changes destined for a missing file were not merged
722 .It D Ta file was deleted
723 .It d Ta file's deletion was obstructed by local modifications
724 .It A Ta new file was added
725 .It ~ Ta changes destined for a non-regular file were not merged
726 .El
727 .Pp
728 If merge conflicts occur the rebase operation is interrupted and may
729 be continued once conflicts have been resolved.
730 Alternatively, the rebase operation may be aborted which will leave
731 .Ar branch
732 unmodified and the work tree switched back to its original branch.
733 .Pp
734 If a merge conflict is resolved in a way which renders the merged
735 change into a no-op change, the corresponding commit will be elided
736 when the rebase operation continues.
737 .Pp
738 .Cm got rebase
739 will refuse to run if certain preconditions are not met.
740 If the work tree contains multiple base commits it must first be updated
741 to a single base commit with
742 .Cm got update .
743 If changes have been staged with
744 .Cm got stage ,
745 these changes must first be comitted with
746 .Cm got commit
747 or unstaged with
748 .Cm got unstage .
749 If the work tree contains local changes, these changes must first be
750 committed with
751 .Cm got commit
752 or reverted with
753 .Cm got revert .
754 If the
755 .Ar branch
756 contains changes to files outside of the work tree's path prefix,
757 the work tree cannot be used to rebase this branch.
758 .Pp
759 The
760 .Cm got update
761 and
762 .Cm got commit
763 commands will refuse to run while a rebase operation is in progress.
764 Other commands which manipulate the work tree may be used for
765 conflict resolution purposes.
766 .Pp
767 The options for
768 .Cm got rebase
769 are as follows:
770 .Bl -tag -width Ds
771 .It Fl a
772 Abort an interrupted rebase operation.
773 If this option is used, no further command-line arguments are allowed.
774 .It Fl c
775 Continue an interrupted rebase operation.
776 If this option is used, no further command-line arguments are allowed.
777 .El
778 .It Cm rb
779 Short alias for
780 .Cm rebase .
781 .It Cm histedit [ Fl a ] [ Fl c] [ Fl F Ar histedit-script ]
782 Edit commit history between the work tree's current base commit and
783 the tip commit of the work tree's current branch.
784 .Pp
785 Editing of commit history is controlled via a
786 .Ar histedit script
787 which can be edited interactively or passed on the command line.
788 The format of the histedit script is line-based.
789 Each line in the script begins with a command name, followed by
790 whitespace and an argument.
791 For most commands, the expected argument is a commit ID SHA1 hash.
792 Any remaining text on the line is ignored.
793 Lines which begin with the
794 .Sq #
795 character are ignored entirely.
796 .Pp
797 The available commands are as follows:
798 .Bl -column YXZ pick-commit
799 .It pick Ar commit Ta Use the specified commit as it is.
800 .It edit Ar commit Ta Use the specified commit but once changes have been
801 merged into the work tree interrupt the histedit operation for amending.
802 .It fold Ar commit Ta Combine the specified commit with the next commit
803 listed further below that will be used.
804 .It drop Ar commit Ta Remove this commit from the edited history.
805 .It mesg Ar log-message Ta Use the specified single-line log message for
806 the commit on the previous line.
807 If the log message argument is left empty, open an editor where a new
808 log message can be written.
809 .El
810 .Pp
811 Every commit in the history being edited must be mentioned in the script.
812 Lines may be re-ordered to change the order of commits in the edited history.
813 .Pp
814 Edited commits are accumulated on a temporary branch which the work tree
815 will remain switched to throughout the entire histedit operation.
816 Once history editing has completed successfully, the temporary branch becomes
817 the new version of the work tree's branch and the work tree is automatically
818 switched to it.
819 .Pp
820 While merging commits, show the status of each affected file,
821 using the following status codes:
822 .Bl -column YXZ description
823 .It G Ta file was merged
824 .It C Ta file was merged and conflicts occurred during merge
825 .It ! Ta changes destined for a missing file were not merged
826 .It D Ta file was deleted
827 .It d Ta file's deletion was obstructed by local modifications
828 .It A Ta new file was added
829 .It ~ Ta changes destined for a non-regular file were not merged
830 .El
831 .Pp
832 If merge conflicts occur the histedit operation is interrupted and may
833 be continued once conflicts have been resolved.
834 Alternatively, the histedit operation may be aborted which will leave
835 the work tree switched back to its original branch.
836 .Pp
837 If a merge conflict is resolved in a way which renders the merged
838 change into a no-op change, the corresponding commit will be elided
839 when the histedit operation continues.
840 .Pp
841 .Cm got histedit
842 will refuse to run if certain preconditions are not met.
843 If the work tree's current branch is not in the
844 .Dq refs/heads/
845 reference namespace, the history of the branch may not be edited.
846 If the work tree contains multiple base commits it must first be updated
847 to a single base commit with
848 .Cm got update .
849 If changes have been staged with
850 .Cm got stage ,
851 these changes must first be comitted with
852 .Cm got commit
853 or unstaged with
854 .Cm got unstage .
855 If the work tree contains local changes, these changes must first be
856 committed with
857 .Cm got commit
858 or reverted with
859 .Cm got revert .
860 If the edited history contains changes to files outside of the work tree's
861 path prefix, the work tree cannot be used to edit the history of this branch.
862 .Pp
863 The
864 .Cm got update
865 command will refuse to run while a histedit operation is in progress.
866 Other commands which manipulate the work tree may be used, and the
867 .Cm got commit
868 command may be used to commit arbitrary changes to the temporary branch
869 while the histedit operation is interrupted.
870 .Pp
871 The options for
872 .Cm got histedit
873 are as follows:
874 .Bl -tag -width Ds
875 .It Fl a
876 Abort an interrupted histedit operation.
877 If this option is used, no further command-line arguments are allowed.
878 .It Fl c
879 Continue an interrupted histedit operation.
880 If this option is used, no further command-line arguments are allowed.
881 .El
882 .It Cm he
883 Short alias for
884 .Cm histedit .
885 .It Cm stage [ Fl l ] [ Fl p ] [ Fl F Ar response-script ] [ Ar path ... ]
886 Stage local changes for inclusion in the next commit.
887 If no
888 .Ar path
889 is specified, stage all changes in the work tree.
890 Otherwise, stage changes at or within the specified paths.
891 Paths may be staged if they are added, modified, or deleted according to
892 .Cm got status .
893 .Pp
894 Show the status of each affected file, using the following status codes:
895 .Bl -column YXZ description
896 .It A Ta file addition has been staged
897 .It M Ta file modification has been staged
898 .It D Ta file deletion has been staged
899 .El
900 .Pp
901 Staged file contents are saved in newly created blob objects in the repository.
902 These blobs will be referred to by tree objects once staged changes have been
903 committed.
904 .Pp
905 Staged changes affect the behaviour of
906 .Cm got commit ,
907 .Cm got status ,
908 and
909 .Cm got diff .
910 While paths with staged changes exist, the
911 .Cm got commit
912 command will refuse to commit any paths which do not have staged changes.
913 Local changes created on top of staged changes can only be committed if
914 the path is staged again, or if the staged changes are committed first.
915 The
916 .Cm got status
917 command will show both local changes and staged changes.
918 The
919 .Cm got diff
920 command is able to display local changes relative to staged changes,
921 and to display staged changes relative to the repository.
922 The
923 .Cm got revert
924 command cannot revert staged changes but may be used to revert
925 local changes created on top of staged changes.
926 .Pp
927 The options for
928 .Cm got stage
929 are as follows:
930 .Bl -tag -width Ds
931 .It Fl l
932 Instead of staging new changes, list paths which are already staged,
933 along with the IDs of staged blob objects and stage status codes.
934 If paths were provided in the command line show the staged paths
935 among the specified paths. Otherwise, show all staged paths.
936 .It Fl p
937 Instead of staging the entire content of a changed file, interactively
938 select or reject changes for staging based on
939 .Dq y
940 (stage change),
941 .Dq n
942 (reject change), and
943 .Dq q
944 (quit staging this file) responses.
945 If a file is in modified status, individual patches derived from the
946 modified file content can be staged.
947 Files in added or deleted status may only be staged or rejected in
948 their entirety.
949 .It Fl F Ar response-script
950 With the
951 .Fl p
952 option, read
953 .Dq y ,
954 .Dq n ,
955 and
956 .Dq q
957 responses line-by-line from the specified
958 .Ar response-script
959 file instead of prompting interactively.
960 .El
961 .Pp
962 .Cm got stage
963 will refuse to run if certain preconditions are not met.
964 If a file contains merge conflicts, these conflicts must be resolved first.
965 If a file is found to be out of date relative to the head commit on the
966 work tree's current branch, the file must be updated with
967 .Cm got update
968 before it can be staged (however, this does not prevent the file from
969 becoming out-of-date at some point after having been staged).
970 .Pp
971 The
972 .Cm got update ,
973 .Cm got rebase ,
974 and
975 .Cm got histedit
976 commands will refuse to run while staged changes exist.
977 If staged changes cannot be committed because a staged path
978 is out of date, the path must be unstaged with
979 .Cm got unstage
980 before it can be updated with
981 .Cm got update ,
982 and may then be staged again if necessary.
983 .It Cm sg
984 Short alias for
985 .Cm stage .
986 .It Cm unstage [ Fl p ] [ Fl F Ar response-script ] [ Ar path ... ]
987 Merge staged changes back into the work tree and put affected paths
988 back into non-staged status.
989 If no
990 .Ar path
991 is specified, unstage all staged changes across the entire work tree.
992 Otherwise, unstage changes at or within the specified paths.
993 .Pp
994 Show the status of each affected file, using the following status codes:
995 .Bl -column YXZ description
996 .It G Ta file was unstaged
997 .It C Ta file was unstaged and conflicts occurred during merge
998 .It ! Ta changes destined for a missing file were not merged
999 .It D Ta file was staged as deleted and still is deleted
1000 .It d Ta file's deletion was obstructed by local modifications
1001 .It ~ Ta changes destined for a non-regular file were not merged
1002 .El
1003 .Pp
1004 The options for
1005 .Cm got unstage
1006 are as follows:
1007 .Bl -tag -width Ds
1008 .It Fl p
1009 Instead of unstaging the entire content of a changed file, interactively
1010 select or reject changes for unstaging based on
1011 .Dq y
1012 (unstage change),
1013 .Dq n
1014 (keep change staged), and
1015 .Dq q
1016 (quit unstaging this file) responses.
1017 If a file is staged in modified status, individual patches derived from the
1018 staged file content can be unstaged.
1019 Files staged in added or deleted status may only be unstaged in their entirety.
1020 .It Fl F Ar response-script
1021 With the
1022 .Fl p
1023 option, read
1024 .Dq y ,
1025 .Dq n ,
1026 and
1027 .Dq q
1028 responses line-by-line from the specified
1029 .Ar response-script
1030 file instead of prompting interactively.
1031 .El
1032 .It Cm ug
1033 Short alias for
1034 .Cm unstage .
1035 .El
1036 .Sh ENVIRONMENT
1037 .Bl -tag -width GOT_AUTHOR
1038 .It Ev GOT_AUTHOR
1039 The author's name and email address for
1040 .Cm got commit
1041 and
1042 .Cm got import ,
1043 for example:
1044 .An Flan Hacker Aq Mt flan_hacker@openbsd.org
1045 .It Ev VISUAL, Ev EDITOR
1046 The editor spawned by
1047 .Cm got commit .
1048 .El
1049 .Sh EXIT STATUS
1050 .Ex -std got
1051 .Sh EXAMPLES
1052 Clone an existing Git repository for use with
1053 .Nm .
1054 This step currently requires
1055 .Xr git 1 :
1056 .Pp
1057 .Dl $ cd /var/git/
1058 .Dl $ git clone --bare https://github.com/openbsd/src.git
1059 .Pp
1060 Alternatively, for quick and dirty local testing of
1061 .Nm
1062 a new Git repository could be created and populated with files,
1063 e.g. from a temporary CVS checkout located at
1064 .Pa /tmp/src :
1065 .Pp
1066 .Dl $ got init /var/git/src.git
1067 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1068 .Pp
1069 Check out a work tree from the Git repository to /usr/src:
1070 .Pp
1071 .Dl $ got checkout /var/git/src.git /usr/src
1072 .Pp
1073 View local changes in a work tree directory:
1074 .Pp
1075 .Dl $ got status
1076 .Dl $ got diff | less
1077 .Pp
1078 In a work tree or a git repository directory, list all branch references:
1079 .Pp
1080 .Dl $ got branch -l
1081 .Pp
1082 In a work tree or a git repository directory, create a new branch called
1083 .Dq unified-buffer-cache
1084 which is forked off the
1085 .Dq master
1086 branch:
1087 .Pp
1088 .Dl $ got branch unified-buffer-cache master
1089 .Pp
1090 Switch an existing work tree to the branch
1091 .Dq unified-buffer-cache .
1092 Local changes in the work tree will be preserved and merged if necessary:
1093 .Pp
1094 .Dl $ got update -b unified-buffer-cache
1095 .Pp
1096 Create a new commit from local changes in a work tree directory.
1097 This new commit will become the head commit of the work tree's current branch:
1098 .Pp
1099 .Dl $ got commit
1100 .Pp
1101 In a work tree or a git repository directory, view changes committed in
1102 the 3 most recent commits to the work tree's branch, or the branch resolved
1103 via the repository's HEAD reference, respectively:
1104 .Pp
1105 .Dl $ got log -p -l 3 -f
1106 .Pp
1107 Add new files and remove obsolete files in a work tree directory:
1108 .Pp
1109 .Dl $ got add sys/uvm/uvm_ubc.c
1110 .Dl $ got remove sys/uvm/uvm_vnode.c
1111 .Pp
1112 Create a new commit from local changes in a work tree directory
1113 with a pre-defined log message.
1114 .Pp
1115 .Dl $ got commit -m 'unify the buffer cache'
1116 .Pp
1117 Update any work tree checked out from the
1118 .Dq unified-buffer-cache
1119 branch to the latest commit on this branch:
1120 .Pp
1121 .Dl $ got update
1122 .Pp
1123 Roll file content on the unified-buffer-cache branch back by one commit,
1124 and then fetch the rolled-back change into the work tree as a local change
1125 to be amended and perhaps committed again:
1126 .Pp
1127 .Dl $ got backout unified-buffer-cache
1128 .Dl $ got commit -m 'roll back previous'
1129 .Dl $ # now back out the previous backout :-)
1130 .Dl $ got backout unified-buffer-cache
1131 .Pp
1132 Fetch new upstream commits into the local repository's master branch.
1133 This step currently requires
1134 .Xr git 1 :
1135 .Pp
1136 .Dl $ cd /var/git/src.git
1137 .Dl $ git fetch origin master:master
1138 .Pp
1139 Rebase the
1140 .Dq unified-buffer-cache
1141 branch on top of the new head commit of the
1142 .Dq master
1143 branch.
1144 .Pp
1145 .Dl $ got update -b master
1146 .Dl $ got rebase unified-buffer-cache
1147 .Pp
1148 Create a patch from all changes on the unified-buffer-cache branch.
1149 The patch can be mailed out for review and applied to OpenBSD's CVS tree:
1150 .Pp
1151 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1152 .Pp
1153 Edit the entire commit history of the
1154 .Dq unified-buffer-cache
1155 branch:
1156 .Pp
1157 .Dl $ got update -b unified-buffer-cache
1158 .Dl $ got update -c master
1159 .Dl $ got histedit
1160 .Pp
1161 Additional steps are necessary if local changes need to be pushed back
1162 to the remote repository, which currently requires
1163 .Cm git fetch
1164 and
1165 .Cm git push .
1166 Before working against existing branches in a repository cloned with
1167 .Dq git clone --bare ,
1168 a Git
1169 .Dq refspec
1170 must be configured to map all references in the remote repository
1171 into the
1172 .Dq refs/remotes
1173 namespace of the local repository.
1174 This can achieved by setting Git's
1175 .Pa remote.origin.fetch
1176 configuration variable to the value
1177 .Dq +refs/heads/*:refs/remotes/origin/*
1178 with the
1179 .Cm git config
1180 command:
1181 .Pp
1182 .Dl $ cd /var/git/repo
1183 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1184 .Pp
1185 Alternatively, the following
1186 .Pa fetch
1187 configuration item can be added manually to the Git repository's
1188 .Pa config
1189 file:
1190 .Pp
1191 .Dl [remote "origin"]
1192 .Dl url = ...
1193 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1194 .Pp
1195 This configuration leaves the local repository's
1196 .Dq refs/heads
1197 namespace free for use by local branches checked out with
1198 .Cm got checkout
1199 and, if needed, created with
1200 .Cm got branch .
1201 .Pp
1202 Branches in the
1203 .Dq remotes/origin
1204 namespace can be updated with incoming changes from the remote
1205 repository with
1206 .Cm git fetch :
1207 .Pp
1208 .Dl $ cd /var/git/repo
1209 .Dl $ git fetch
1210 .Pp
1211 Before outgoing changes on the local
1212 .Dq master
1213 branch can be pushed to the remote repository, the local
1214 .Dq master
1215 branch must be rebased onto the
1216 .Dq origin/master
1217 branch:
1218 .Pp
1219 .Dl $ got update -b origin/master
1220 .Dl $ got rebase master
1221 .Pp
1222 Changes on the local
1223 .Dq master
1224 branch can then be pushed to the remote
1225 repository with
1226 .Cm git push :
1227 .Pp
1228 .Dl $ cd /var/git/repo
1229 .Dl $ git push origin master
1230 .Pp
1231 .Sh SEE ALSO
1232 .Xr tog 1 ,
1233 .Xr git-repository 5 ,
1234 .Xr got-worktree 5
1235 .Sh AUTHORS
1236 .An Stefan Sperling Aq Mt stsp@openbsd.org
1237 .An Martin Pieuchot Aq Mt mpi@openbsd.org
1238 .An joshua stein Aq Mt jcs@openbsd.org
1239 .Sh CAVEATS
1240 .Nm
1241 is a work-in-progress and many commands remain to be implemented.
1242 At present, the user has to fall back on
1243 .Xr git 1
1244 to perform many tasks, in particular tasks related to repository
1245 administration and tasks which require a network connection.