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