Blob


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