Blob


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