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