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 stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1046 Stage local changes for inclusion in the next commit.
1047 If no
1048 .Ar path
1049 is specified, stage all changes in the work tree.
1050 Otherwise, stage changes at or within the specified paths.
1051 Paths may be staged if they are added, modified, or deleted according to
1052 .Cm got status .
1053 .Pp
1054 Show the status of each affected file, using the following status codes:
1055 .Bl -column YXZ description
1056 .It A Ta file addition has been staged
1057 .It M Ta file modification has been staged
1058 .It D Ta file deletion has been staged
1059 .El
1060 .Pp
1061 Staged file contents are saved in newly created blob objects in the repository.
1062 These blobs will be referred to by tree objects once staged changes have been
1063 committed.
1064 .Pp
1065 Staged changes affect the behaviour of
1066 .Cm got commit ,
1067 .Cm got status ,
1068 and
1069 .Cm got diff .
1070 While paths with staged changes exist, the
1071 .Cm got commit
1072 command will refuse to commit any paths which do not have staged changes.
1073 Local changes created on top of staged changes can only be committed if
1074 the path is staged again, or if the staged changes are committed first.
1075 The
1076 .Cm got status
1077 command will show both local changes and staged changes.
1078 The
1079 .Cm got diff
1080 command is able to display local changes relative to staged changes,
1081 and to display staged changes relative to the repository.
1082 The
1083 .Cm got revert
1084 command cannot revert staged changes but may be used to revert
1085 local changes created on top of staged changes.
1086 .Pp
1087 The options for
1088 .Cm got stage
1089 are as follows:
1090 .Bl -tag -width Ds
1091 .It Fl l
1092 Instead of staging new changes, list paths which are already staged,
1093 along with the IDs of staged blob objects and stage status codes.
1094 If paths were provided in the command line show the staged paths
1095 among the specified paths.
1096 Otherwise, show all staged paths.
1097 .It Fl p
1098 Instead of staging the entire content of a changed file, interactively
1099 select or reject changes for staging based on
1100 .Dq y
1101 (stage change),
1102 .Dq n
1103 (reject change), and
1104 .Dq q
1105 (quit staging this file) responses.
1106 If a file is in modified status, individual patches derived from the
1107 modified file content can be staged.
1108 Files in added or deleted status may only be staged or rejected in
1109 their entirety.
1110 .It Fl F Ar response-script
1111 With the
1112 .Fl p
1113 option, read
1114 .Dq y ,
1115 .Dq n ,
1116 and
1117 .Dq q
1118 responses line-by-line from the specified
1119 .Ar response-script
1120 file instead of prompting interactively.
1121 .El
1122 .Pp
1123 .Cm got stage
1124 will refuse to run if certain preconditions are not met.
1125 If a file contains merge conflicts, these conflicts must be resolved first.
1126 If a file is found to be out of date relative to the head commit on the
1127 work tree's current branch, the file must be updated with
1128 .Cm got update
1129 before it can be staged (however, this does not prevent the file from
1130 becoming out-of-date at some point after having been staged).
1131 .Pp
1132 The
1133 .Cm got update ,
1134 .Cm got rebase ,
1135 and
1136 .Cm got histedit
1137 commands will refuse to run while staged changes exist.
1138 If staged changes cannot be committed because a staged path
1139 is out of date, the path must be unstaged with
1140 .Cm got unstage
1141 before it can be updated with
1142 .Cm got update ,
1143 and may then be staged again if necessary.
1144 .It Cm sg
1145 Short alias for
1146 .Cm stage .
1147 .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1148 Merge staged changes back into the work tree and put affected paths
1149 back into non-staged status.
1150 If no
1151 .Ar path
1152 is specified, unstage all staged changes across the entire work tree.
1153 Otherwise, unstage changes at or within the specified paths.
1154 .Pp
1155 Show the status of each affected file, using the following status codes:
1156 .Bl -column YXZ description
1157 .It G Ta file was unstaged
1158 .It C Ta file was unstaged and conflicts occurred during merge
1159 .It ! Ta changes destined for a missing file were not merged
1160 .It D Ta file was staged as deleted and still is deleted
1161 .It d Ta file's deletion was obstructed by local modifications
1162 .It \(a~ Ta changes destined for a non-regular file were not merged
1163 .El
1164 .Pp
1165 The options for
1166 .Cm got unstage
1167 are as follows:
1168 .Bl -tag -width Ds
1169 .It Fl p
1170 Instead of unstaging the entire content of a changed file, interactively
1171 select or reject changes for unstaging based on
1172 .Dq y
1173 (unstage change),
1174 .Dq n
1175 (keep change staged), and
1176 .Dq q
1177 (quit unstaging this file) responses.
1178 If a file is staged in modified status, individual patches derived from the
1179 staged file content can be unstaged.
1180 Files staged in added or deleted status may only be unstaged in their entirety.
1181 .It Fl F Ar response-script
1182 With the
1183 .Fl p
1184 option, read
1185 .Dq y ,
1186 .Dq n ,
1187 and
1188 .Dq q
1189 responses line-by-line from the specified
1190 .Ar response-script
1191 file instead of prompting interactively.
1192 .El
1193 .It Cm ug
1194 Short alias for
1195 .Cm unstage .
1196 .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1197 Parse and print contents of objects to standard output in a line-based
1198 text format.
1199 Content of commit, tree, and tag objects is printed in a way similar
1200 to the actual content stored in such objects.
1201 Blob object contents are printed as they would appear in files on disk.
1202 .Pp
1203 Attempt to interpret each argument as a reference, a tag name, or
1204 an object ID SHA1 hash.
1205 References will be resolved to an object ID.
1206 Tag names will resolved to a tag object.
1207 An abbreviated hash argument will be expanded to a full SHA1 hash
1208 automatically, provided the abbreviation is unique.
1209 .Pp
1210 If none of the above interpretations produce a valid result, or if the
1211 .Fl P
1212 option is used, attempt to interpret the argument as a path which will
1213 be resolved to the ID of an object found at this path in the repository.
1214 .Pp
1215 The options for
1216 .Cm got cat
1217 are as follows:
1218 .Bl -tag -width Ds
1219 .It Fl c Ar commit
1220 Look up paths in the specified
1221 .Ar commit .
1222 If this option is not used, paths are looked up in the commit resolved
1223 via the repository's HEAD reference.
1224 The expected argument is a commit ID SHA1 hash or an existing reference
1225 or tag name which will be resolved to a commit ID.
1226 An abbreviated hash argument will be expanded to a full SHA1 hash
1227 automatically, provided the abbreviation is unique.
1228 .It Fl r Ar repository-path
1229 Use the repository at the specified path.
1230 If not specified, assume the repository is located at or above the current
1231 working directory.
1232 If this directory is a
1233 .Nm
1234 work tree, use the repository path associated with this work tree.
1235 .It Fl P
1236 Interpret all arguments as paths only.
1237 This option can be used to resolve ambiguity in cases where paths
1238 look like tag names, reference names, or object IDs.
1239 .El
1240 .El
1241 .Sh ENVIRONMENT
1242 .Bl -tag -width GOT_AUTHOR
1243 .It Ev GOT_AUTHOR
1244 The author's name and email address for
1245 .Cm got commit
1246 and
1247 .Cm got import ,
1248 for example:
1249 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1250 Because
1251 .Xr git 1
1252 may fail to parse commits without an email address in author data,
1253 .Nm
1254 attempts to reject
1255 .Ev GOT_AUTHOR
1256 environment variables with a missing email address.
1257 .Pp
1258 If present, Git's
1259 .Dv user.name
1260 and
1261 .Dv user.email
1262 configuration settings in the repository's
1263 .Pa .git/config
1264 file will override the value of
1265 .Ev GOT_AUTHOR .
1266 However, the
1267 .Dv user.name
1268 and
1269 .Dv user.email
1270 configuration settings contained in Git's global
1271 .Pa ~/.gitconfig
1272 configuration file will be used only if the
1273 .Ev GOT_AUTHOR
1274 environment variable is
1275 .Em not
1276 set.
1277 .It Ev VISUAL , EDITOR
1278 The editor spawned by
1279 .Cm got commit ,
1280 .Cm got import ,
1282 .Cm got tag .
1283 .It Ev GOT_LOG_DEFAULT_LIMIT
1284 The default limit on the number of commits traversed by
1285 .Cm got log .
1286 If set to zero, the limit is unbounded.
1287 This variable will be silently ignored if it is set to a non-numeric value.
1288 .El
1289 .Sh EXIT STATUS
1290 .Ex -std got
1291 .Sh EXAMPLES
1292 Clone an existing Git repository for use with
1293 .Nm .
1294 This step currently requires
1295 .Xr git 1 :
1296 .Pp
1297 .Dl $ cd /var/git/
1298 .Dl $ git clone --bare https://github.com/openbsd/src.git
1299 .Pp
1300 Alternatively, for quick and dirty local testing of
1301 .Nm
1302 a new Git repository could be created and populated with files,
1303 e.g. from a temporary CVS checkout located at
1304 .Pa /tmp/src :
1305 .Pp
1306 .Dl $ got init /var/git/src.git
1307 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1308 .Pp
1309 Check out a work tree from the Git repository to /usr/src:
1310 .Pp
1311 .Dl $ got checkout /var/git/src.git /usr/src
1312 .Pp
1313 View local changes in a work tree directory:
1314 .Pp
1315 .Dl $ got status
1316 .Dl $ got diff | less
1317 .Pp
1318 Interactively revert selected local changes in a work tree directory:
1319 .Pp
1320 .Dl $ got revert -p -R\ .
1321 .Pp
1322 In a work tree or a git repository directory, list all branch references:
1323 .Pp
1324 .Dl $ got branch -l
1325 .Pp
1326 In a work tree or a git repository directory, create a new branch called
1327 .Dq unified-buffer-cache
1328 which is forked off the
1329 .Dq master
1330 branch:
1331 .Pp
1332 .Dl $ got branch unified-buffer-cache master
1333 .Pp
1334 Switch an existing work tree to the branch
1335 .Dq unified-buffer-cache .
1336 Local changes in the work tree will be preserved and merged if necessary:
1337 .Pp
1338 .Dl $ got update -b unified-buffer-cache
1339 .Pp
1340 Create a new commit from local changes in a work tree directory.
1341 This new commit will become the head commit of the work tree's current branch:
1342 .Pp
1343 .Dl $ got commit
1344 .Pp
1345 In a work tree or a git repository directory, view changes committed in
1346 the 3 most recent commits to the work tree's branch, or the branch resolved
1347 via the repository's HEAD reference, respectively:
1348 .Pp
1349 .Dl $ got log -p -l 3 -f
1350 .Pp
1351 Add new files and remove obsolete files in a work tree directory:
1352 .Pp
1353 .Dl $ got add sys/uvm/uvm_ubc.c
1354 .Dl $ got remove sys/uvm/uvm_vnode.c
1355 .Pp
1356 Create a new commit from local changes in a work tree directory
1357 with a pre-defined log message.
1358 .Pp
1359 .Dl $ got commit -m 'unify the buffer cache'
1360 .Pp
1361 Update any work tree checked out from the
1362 .Dq unified-buffer-cache
1363 branch to the latest commit on this branch:
1364 .Pp
1365 .Dl $ got update
1366 .Pp
1367 Roll file content on the unified-buffer-cache branch back by one commit,
1368 and then fetch the rolled-back change into the work tree as a local change
1369 to be amended and perhaps committed again:
1370 .Pp
1371 .Dl $ got backout unified-buffer-cache
1372 .Dl $ got commit -m 'roll back previous'
1373 .Dl $ # now back out the previous backout :-)
1374 .Dl $ got backout unified-buffer-cache
1375 .Pp
1376 Fetch new upstream commits into the local repository's master branch.
1377 This step currently requires
1378 .Xr git 1 :
1379 .Pp
1380 .Dl $ cd /var/git/src.git
1381 .Dl $ git fetch origin master:master
1382 .Pp
1383 Rebase the
1384 .Dq unified-buffer-cache
1385 branch on top of the new head commit of the
1386 .Dq master
1387 branch.
1388 .Pp
1389 .Dl $ got update -b master
1390 .Dl $ got rebase unified-buffer-cache
1391 .Pp
1392 Create a patch from all changes on the unified-buffer-cache branch.
1393 The patch can be mailed out for review and applied to
1394 .Ox Ns 's
1395 CVS tree:
1396 .Pp
1397 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1398 .Pp
1399 Edit the entire commit history of the
1400 .Dq unified-buffer-cache
1401 branch:
1402 .Pp
1403 .Dl $ got update -b unified-buffer-cache
1404 .Dl $ got update -c master
1405 .Dl $ got histedit
1406 .Pp
1407 Additional steps are necessary if local changes need to be pushed back
1408 to the remote repository, which currently requires
1409 .Cm git fetch
1410 and
1411 .Cm git push .
1412 Before working against existing branches in a repository cloned with
1413 .Dq git clone --bare ,
1414 a Git
1415 .Dq refspec
1416 must be configured to map all references in the remote repository
1417 into the
1418 .Dq refs/remotes
1419 namespace of the local repository.
1420 This can achieved by setting Git's
1421 .Pa remote.origin.fetch
1422 configuration variable to the value
1423 .Dq +refs/heads/*:refs/remotes/origin/*
1424 with the
1425 .Cm git config
1426 command:
1427 .Pp
1428 .Dl $ cd /var/git/repo
1429 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1430 .Pp
1431 Alternatively, the following
1432 .Pa fetch
1433 configuration item can be added manually to the Git repository's
1434 .Pa config
1435 file:
1436 .Pp
1437 .Dl [remote "origin"]
1438 .Dl url = ...
1439 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1440 .Pp
1441 This configuration leaves the local repository's
1442 .Dq refs/heads
1443 namespace free for use by local branches checked out with
1444 .Cm got checkout
1445 and, if needed, created with
1446 .Cm got branch .
1447 .Pp
1448 Branches in the
1449 .Dq remotes/origin
1450 namespace can be updated with incoming changes from the remote
1451 repository with
1452 .Cm git fetch :
1453 .Pp
1454 .Dl $ cd /var/git/repo
1455 .Dl $ git fetch
1456 .Pp
1457 Before outgoing changes on the local
1458 .Dq master
1459 branch can be pushed to the remote repository, the local
1460 .Dq master
1461 branch must be rebased onto the
1462 .Dq origin/master
1463 branch:
1464 .Pp
1465 .Dl $ got update -b origin/master
1466 .Dl $ got rebase master
1467 .Pp
1468 Changes on the local
1469 .Dq master
1470 branch can then be pushed to the remote
1471 repository with
1472 .Cm git push :
1473 .Pp
1474 .Dl $ cd /var/git/repo
1475 .Dl $ git push origin master
1476 .Sh SEE ALSO
1477 .Xr tog 1 ,
1478 .Xr git-repository 5 ,
1479 .Xr got-worktree 5
1480 .Sh AUTHORS
1481 .An Stefan Sperling Aq Mt stsp@openbsd.org
1482 .An Martin Pieuchot Aq Mt mpi@openbsd.org
1483 .An Joshua Stein Aq Mt jcs@openbsd.org
1484 .Sh CAVEATS
1485 .Nm
1486 is a work-in-progress and many commands remain to be implemented.
1487 At present, the user has to fall back on
1488 .Xr git 1
1489 to perform many tasks, in particular tasks related to repository
1490 administration and tasks which require a network connection.