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