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