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