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