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