Blob


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