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