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