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 .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
707 configuration settings can be
708 obtained from the repository's
709 .Pa .git/config
710 file or from Git's global
711 .Pa ~/.gitconfig
712 configuration file.
713 .Pp
714 The options for
715 .Cm got commit
716 are as follows:
717 .Bl -tag -width Ds
718 .It Fl m Ar message
719 Use the specified log message when creating the new commit.
720 Without the
721 .Fl m
722 option,
723 .Cm got commit
724 opens a temporary file in an editor where a log message can be written.
725 .El
726 .Pp
727 .Cm got commit
728 will refuse to run if certain preconditions are not met.
729 If the work tree's current branch is not in the
730 .Dq refs/heads/
731 reference namespace, new commits may not be created on this branch.
732 Local changes may only be committed if they are based on file content
733 found in the most recent commit on the work tree's branch.
734 If a path is found to be out of date,
735 .Cm got update
736 must be used first in order to merge local changes with changes made
737 in the repository.
738 .It Cm ci
739 Short alias for
740 .Cm commit .
741 .It Cm cherrypick Ar commit
742 Merge changes from a single
743 .Ar commit
744 into the work tree.
745 The specified
746 .Ar commit
747 must be on a different branch than the work tree's base commit.
748 The expected argument is a reference or a commit ID SHA1 hash.
749 An abbreviated hash argument will be expanded to a full SHA1 hash
750 automatically, provided the abbreviation is unique.
751 .Pp
752 Show the status of each affected file, using the following status codes:
753 .Bl -column YXZ description
754 .It G Ta file was merged
755 .It C Ta file was merged and conflicts occurred during merge
756 .It ! Ta changes destined for a missing file were not merged
757 .It D Ta file was deleted
758 .It d Ta file's deletion was obstructed by local modifications
759 .It A Ta new file was added
760 .It \(a~ Ta changes destined for a non-regular file were not merged
761 .El
762 .Pp
763 The merged changes will appear as local changes in the work tree, which
764 may be viewed with
765 .Cm got diff ,
766 amended manually or with further
767 .Cm got cherrypick
768 commands,
769 committed with
770 .Cm got commit ,
771 or discarded again with
772 .Cm got revert .
773 .Pp
774 .Cm got cherrypick
775 will refuse to run if certain preconditions are not met.
776 If the work tree contains multiple base commits it must first be updated
777 to a single base commit with
778 .Cm got update .
779 If the work tree already contains files with merge conflicts, these
780 conflicts must be resolved first.
781 .It Cm cy
782 Short alias for
783 .Cm cherrypick .
784 .It Cm backout Ar commit
785 Reverse-merge changes from a single
786 .Ar commit
787 into the work tree.
788 The specified
789 .Ar commit
790 must be on the same branch as the work tree's base commit.
791 The expected argument is a reference or a commit ID SHA1 hash.
792 An abbreviated hash argument will be expanded to a full SHA1 hash
793 automatically, provided the abbreviation is unique.
794 .Pp
795 Show the status of each affected file, using the following status codes:
796 .Bl -column YXZ description
797 .It G Ta file was merged
798 .It C Ta file was merged and conflicts occurred during merge
799 .It ! Ta changes destined for a missing file were not merged
800 .It D Ta file was deleted
801 .It d Ta file's deletion was obstructed by local modifications
802 .It A Ta new file was added
803 .It \(a~ Ta changes destined for a non-regular file were not merged
804 .El
805 .Pp
806 The reverse-merged changes will appear as local changes in the work tree,
807 which may be viewed with
808 .Cm got diff ,
809 amended manually or with further
810 .Cm got backout
811 commands,
812 committed with
813 .Cm got commit ,
814 or discarded again with
815 .Cm got revert .
816 .Pp
817 .Cm got backout
818 will refuse to run if certain preconditions are not met.
819 If the work tree contains multiple base commits it must first be updated
820 to a single base commit with
821 .Cm got update .
822 If the work tree already contains files with merge conflicts, these
823 conflicts must be resolved first.
824 .It Cm bo
825 Short alias for
826 .Cm backout .
827 .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
828 Rebase commits on the specified
829 .Ar branch
830 onto the tip of the current branch of the work tree.
831 The
832 .Ar branch
833 must share common ancestry with the work tree's current branch.
834 Rebasing begins with the first descendant commit of the youngest
835 common ancestor commit shared by the specified
836 .Ar branch
837 and the work tree's current branch, and stops once the tip commit
838 of the specified
839 .Ar branch
840 has been rebased.
841 .Pp
842 Rebased commits are accumulated on a temporary branch which the work tree
843 will remain switched to throughout the entire rebase operation.
844 Commits on this branch represent the same changes with the same log
845 messages as their counterparts on the original
846 .Ar branch ,
847 but with different commit IDs.
848 Once rebasing has completed successfully, the temporary branch becomes
849 the new version of the specified
850 .Ar branch
851 and the work tree is automatically switched to it.
852 .Pp
853 While rebasing commits, show the status of each affected file,
854 using the following status codes:
855 .Bl -column YXZ description
856 .It G Ta file was merged
857 .It C Ta file was merged and conflicts occurred during merge
858 .It ! Ta changes destined for a missing file were not merged
859 .It D Ta file was deleted
860 .It d Ta file's deletion was obstructed by local modifications
861 .It A Ta new file was added
862 .It \(a~ Ta changes destined for a non-regular file were not merged
863 .El
864 .Pp
865 If merge conflicts occur the rebase operation is interrupted and may
866 be continued once conflicts have been resolved.
867 Alternatively, the rebase operation may be aborted which will leave
868 .Ar branch
869 unmodified and the work tree switched back to its original branch.
870 .Pp
871 If a merge conflict is resolved in a way which renders the merged
872 change into a no-op change, the corresponding commit will be elided
873 when the rebase operation continues.
874 .Pp
875 .Cm got rebase
876 will refuse to run if certain preconditions are not met.
877 If the work tree contains multiple base commits it must first be updated
878 to a single base commit with
879 .Cm got update .
880 If changes have been staged with
881 .Cm got stage ,
882 these changes must first be committed with
883 .Cm got commit
884 or unstaged with
885 .Cm got unstage .
886 If the work tree contains local changes, these changes must first be
887 committed with
888 .Cm got commit
889 or reverted with
890 .Cm got revert .
891 If the
892 .Ar branch
893 contains changes to files outside of the work tree's path prefix,
894 the work tree cannot be used to rebase this branch.
895 .Pp
896 The
897 .Cm got update
898 and
899 .Cm got commit
900 commands will refuse to run while a rebase operation is in progress.
901 Other commands which manipulate the work tree may be used for
902 conflict resolution purposes.
903 .Pp
904 The options for
905 .Cm got rebase
906 are as follows:
907 .Bl -tag -width Ds
908 .It Fl a
909 Abort an interrupted rebase operation.
910 If this option is used, no other command-line arguments are allowed.
911 .It Fl c
912 Continue an interrupted rebase operation.
913 If this option is used, no other command-line arguments are allowed.
914 .El
915 .It Cm rb
916 Short alias for
917 .Cm rebase .
918 .It Cm histedit Oo Fl a Oc Oo Fl c Oc Op Fl F Ar histedit-script
919 Edit commit history between the work tree's current base commit and
920 the tip commit of the work tree's current branch.
921 .Pp
922 Editing of commit history is controlled via a
923 .Ar histedit script
924 which can be edited interactively or passed on the command line.
925 The format of the histedit script is line-based.
926 Each line in the script begins with a command name, followed by
927 whitespace and an argument.
928 For most commands, the expected argument is a commit ID SHA1 hash.
929 Any remaining text on the line is ignored.
930 Lines which begin with the
931 .Sq #
932 character are ignored entirely.
933 .Pp
934 The available commands are as follows:
935 .Bl -column YXZ pick-commit
936 .It pick Ar commit Ta Use the specified commit as it is.
937 .It edit Ar commit Ta Use the specified commit but once changes have been
938 merged into the work tree interrupt the histedit operation for amending.
939 .It fold Ar commit Ta Combine the specified commit with the next commit
940 listed further below that will be used.
941 .It drop Ar commit Ta Remove this commit from the edited history.
942 .It mesg Ar log-message Ta Use the specified single-line log message for
943 the commit on the previous line.
944 If the log message argument is left empty, open an editor where a new
945 log message can be written.
946 .El
947 .Pp
948 Every commit in the history being edited must be mentioned in the script.
949 Lines may be re-ordered to change the order of commits in the edited history.
950 .Pp
951 Edited commits are accumulated on a temporary branch which the work tree
952 will remain switched to throughout the entire histedit operation.
953 Once history editing has completed successfully, the temporary branch becomes
954 the new version of the work tree's branch and the work tree is automatically
955 switched to it.
956 .Pp
957 While merging commits, show the status of each affected file,
958 using the following status codes:
959 .Bl -column YXZ description
960 .It G Ta file was merged
961 .It C Ta file was merged and conflicts occurred during merge
962 .It ! Ta changes destined for a missing file were not merged
963 .It D Ta file was deleted
964 .It d Ta file's deletion was obstructed by local modifications
965 .It A Ta new file was added
966 .It \(a~ Ta changes destined for a non-regular file were not merged
967 .El
968 .Pp
969 If merge conflicts occur the histedit operation is interrupted and may
970 be continued once conflicts have been resolved.
971 Alternatively, the histedit operation may be aborted which will leave
972 the work tree switched back to its original branch.
973 .Pp
974 If a merge conflict is resolved in a way which renders the merged
975 change into a no-op change, the corresponding commit will be elided
976 when the histedit operation continues.
977 .Pp
978 .Cm got histedit
979 will refuse to run if certain preconditions are not met.
980 If the work tree's current branch is not in the
981 .Dq refs/heads/
982 reference namespace, the history of the branch may not be edited.
983 If the work tree contains multiple base commits it must first be updated
984 to a single base commit with
985 .Cm got update .
986 If changes have been staged with
987 .Cm got stage ,
988 these changes must first be committed with
989 .Cm got commit
990 or unstaged with
991 .Cm got unstage .
992 If the work tree contains local changes, these changes must first be
993 committed with
994 .Cm got commit
995 or reverted with
996 .Cm got revert .
997 If the edited history contains changes to files outside of the work tree's
998 path prefix, the work tree cannot be used to edit the history of this branch.
999 .Pp
1000 The
1001 .Cm got update
1002 command will refuse to run while a histedit operation is in progress.
1003 Other commands which manipulate the work tree may be used, and the
1004 .Cm got commit
1005 command may be used to commit arbitrary changes to the temporary branch
1006 while the histedit operation is interrupted.
1007 .Pp
1008 The options for
1009 .Cm got histedit
1010 are as follows:
1011 .Bl -tag -width Ds
1012 .It Fl a
1013 Abort an interrupted histedit operation.
1014 If this option is used, no other command-line arguments are allowed.
1015 .It Fl c
1016 Continue an interrupted histedit operation.
1017 If this option is used, no other command-line arguments are allowed.
1018 .El
1019 .It Cm he
1020 Short alias for
1021 .Cm histedit .
1022 .It Cm stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1023 Stage local changes for inclusion in the next commit.
1024 If no
1025 .Ar path
1026 is specified, stage all changes in the work tree.
1027 Otherwise, stage changes at or within the specified paths.
1028 Paths may be staged if they are added, modified, or deleted according to
1029 .Cm got status .
1030 .Pp
1031 Show the status of each affected file, using the following status codes:
1032 .Bl -column YXZ description
1033 .It A Ta file addition has been staged
1034 .It M Ta file modification has been staged
1035 .It D Ta file deletion has been staged
1036 .El
1037 .Pp
1038 Staged file contents are saved in newly created blob objects in the repository.
1039 These blobs will be referred to by tree objects once staged changes have been
1040 committed.
1041 .Pp
1042 Staged changes affect the behaviour of
1043 .Cm got commit ,
1044 .Cm got status ,
1045 and
1046 .Cm got diff .
1047 While paths with staged changes exist, the
1048 .Cm got commit
1049 command will refuse to commit any paths which do not have staged changes.
1050 Local changes created on top of staged changes can only be committed if
1051 the path is staged again, or if the staged changes are committed first.
1052 The
1053 .Cm got status
1054 command will show both local changes and staged changes.
1055 The
1056 .Cm got diff
1057 command is able to display local changes relative to staged changes,
1058 and to display staged changes relative to the repository.
1059 The
1060 .Cm got revert
1061 command cannot revert staged changes but may be used to revert
1062 local changes created on top of staged changes.
1063 .Pp
1064 The options for
1065 .Cm got stage
1066 are as follows:
1067 .Bl -tag -width Ds
1068 .It Fl l
1069 Instead of staging new changes, list paths which are already staged,
1070 along with the IDs of staged blob objects and stage status codes.
1071 If paths were provided in the command line show the staged paths
1072 among the specified paths.
1073 Otherwise, show all staged paths.
1074 .It Fl p
1075 Instead of staging the entire content of a changed file, interactively
1076 select or reject changes for staging based on
1077 .Dq y
1078 (stage change),
1079 .Dq n
1080 (reject change), and
1081 .Dq q
1082 (quit staging this file) responses.
1083 If a file is in modified status, individual patches derived from the
1084 modified file content can be staged.
1085 Files in added or deleted status may only be staged or rejected in
1086 their entirety.
1087 .It Fl F Ar response-script
1088 With the
1089 .Fl p
1090 option, read
1091 .Dq y ,
1092 .Dq n ,
1093 and
1094 .Dq q
1095 responses line-by-line from the specified
1096 .Ar response-script
1097 file instead of prompting interactively.
1098 .El
1099 .Pp
1100 .Cm got stage
1101 will refuse to run if certain preconditions are not met.
1102 If a file contains merge conflicts, these conflicts must be resolved first.
1103 If a file is found to be out of date relative to the head commit on the
1104 work tree's current branch, the file must be updated with
1105 .Cm got update
1106 before it can be staged (however, this does not prevent the file from
1107 becoming out-of-date at some point after having been staged).
1108 .Pp
1109 The
1110 .Cm got update ,
1111 .Cm got rebase ,
1112 and
1113 .Cm got histedit
1114 commands will refuse to run while staged changes exist.
1115 If staged changes cannot be committed because a staged path
1116 is out of date, the path must be unstaged with
1117 .Cm got unstage
1118 before it can be updated with
1119 .Cm got update ,
1120 and may then be staged again if necessary.
1121 .It Cm sg
1122 Short alias for
1123 .Cm stage .
1124 .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1125 Merge staged changes back into the work tree and put affected paths
1126 back into non-staged status.
1127 If no
1128 .Ar path
1129 is specified, unstage all staged changes across the entire work tree.
1130 Otherwise, unstage changes at or within the specified paths.
1131 .Pp
1132 Show the status of each affected file, using the following status codes:
1133 .Bl -column YXZ description
1134 .It G Ta file was unstaged
1135 .It C Ta file was unstaged and conflicts occurred during merge
1136 .It ! Ta changes destined for a missing file were not merged
1137 .It D Ta file was staged as deleted and still is deleted
1138 .It d Ta file's deletion was obstructed by local modifications
1139 .It \(a~ Ta changes destined for a non-regular file were not merged
1140 .El
1141 .Pp
1142 The options for
1143 .Cm got unstage
1144 are as follows:
1145 .Bl -tag -width Ds
1146 .It Fl p
1147 Instead of unstaging the entire content of a changed file, interactively
1148 select or reject changes for unstaging based on
1149 .Dq y
1150 (unstage change),
1151 .Dq n
1152 (keep change staged), and
1153 .Dq q
1154 (quit unstaging this file) responses.
1155 If a file is staged in modified status, individual patches derived from the
1156 staged file content can be unstaged.
1157 Files staged in added or deleted status may only be unstaged in their entirety.
1158 .It Fl F Ar response-script
1159 With the
1160 .Fl p
1161 option, read
1162 .Dq y ,
1163 .Dq n ,
1164 and
1165 .Dq q
1166 responses line-by-line from the specified
1167 .Ar response-script
1168 file instead of prompting interactively.
1169 .El
1170 .It Cm ug
1171 Short alias for
1172 .Cm unstage .
1173 .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1174 Parse and print contents of objects to standard output in a line-based
1175 text format.
1176 Content of commit, tree, and tag objects is printed in a way similar
1177 to the actual content stored in such objects.
1178 Blob object contents are printed as they would appear in files on disk.
1179 .Pp
1180 Attempt to interpret each argument as a reference, a tag name, or
1181 an object ID SHA1 hash.
1182 References will be resolved to an object ID.
1183 Tag names will resolved to a tag object.
1184 An abbreviated hash argument will be expanded to a full SHA1 hash
1185 automatically, provided the abbreviation is unique.
1186 .Pp
1187 If none of the above interpretations produce a valid result, or if the
1188 .Fl P
1189 option is used, attempt to interpret the argument as a path which will
1190 be resolved to the ID of an object found at this path in the repository.
1191 .Pp
1192 The options for
1193 .Cm got cat
1194 are as follows:
1195 .Bl -tag -width Ds
1196 .It Fl c Ar commit
1197 Look up paths in the specified
1198 .Ar commit .
1199 If this option is not used, paths are looked up in the commit resolved
1200 via the repository's HEAD reference.
1201 The expected argument is a commit ID SHA1 hash or an existing reference
1202 or tag name which will be resolved to a commit ID.
1203 An abbreviated hash argument will be expanded to a full SHA1 hash
1204 automatically, provided the abbreviation is unique.
1205 .It Fl r Ar repository-path
1206 Use the repository at the specified path.
1207 If not specified, assume the repository is located at or above the current
1208 working directory.
1209 If this directory is a
1210 .Nm
1211 work tree, use the repository path associated with this work tree.
1212 .It Fl P
1213 Interpret all arguments as paths only.
1214 This option can be used to resolve ambiguity in cases where paths
1215 look like tag names, reference names, or object IDs.
1216 .El
1217 .El
1218 .Sh ENVIRONMENT
1219 .Bl -tag -width GOT_AUTHOR
1220 .It Ev GOT_AUTHOR
1221 The author's name and email address for
1222 .Cm got commit
1223 and
1224 .Cm got import ,
1225 for example:
1226 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1227 Because
1228 .Xr git 1
1229 may fail to parse commits without an email address in author data,
1230 .Nm
1231 attempts to reject
1232 .Ev GOT_AUTHOR
1233 environment variables with a missing email address.
1234 .Pp
1235 If present, Git's
1236 .Dv user.name
1237 and
1238 .Dv user.email
1239 configuration settings in the repository's
1240 .Pa .git/config
1241 file will override the value of
1242 .Ev GOT_AUTHOR .
1243 However, the
1244 .Dv user.name
1245 and
1246 .Dv user.email
1247 configuration settings contained in Git's global
1248 .Pa ~/.gitconfig
1249 configuration file will be used only if the
1250 .Ev GOT_AUTHOR
1251 environment variable is
1252 .Em not
1253 set.
1254 .It Ev VISUAL , EDITOR
1255 The editor spawned by
1256 .Cm got commit ,
1257 .Cm got import ,
1259 .Cm got tag .
1260 .It Ev GOT_LOG_DEFAULT_LIMIT
1261 The default limit on the number of commits traversed by
1262 .Cm got log .
1263 If set to zero, the limit is unbounded.
1264 This variable will be silently ignored if it is set to a non-numeric value.
1265 .El
1266 .Sh EXIT STATUS
1267 .Ex -std got
1268 .Sh EXAMPLES
1269 Clone an existing Git repository for use with
1270 .Nm .
1271 This step currently requires
1272 .Xr git 1 :
1273 .Pp
1274 .Dl $ cd /var/git/
1275 .Dl $ git clone --bare https://github.com/openbsd/src.git
1276 .Pp
1277 Alternatively, for quick and dirty local testing of
1278 .Nm
1279 a new Git repository could be created and populated with files,
1280 e.g. from a temporary CVS checkout located at
1281 .Pa /tmp/src :
1282 .Pp
1283 .Dl $ got init /var/git/src.git
1284 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1285 .Pp
1286 Check out a work tree from the Git repository to /usr/src:
1287 .Pp
1288 .Dl $ got checkout /var/git/src.git /usr/src
1289 .Pp
1290 View local changes in a work tree directory:
1291 .Pp
1292 .Dl $ got status
1293 .Dl $ got diff | less
1294 .Pp
1295 Interactively revert selected local changes in a work tree directory:
1296 .Pp
1297 .Dl $ got revert -p -R\ .
1298 .Pp
1299 In a work tree or a git repository directory, list all branch references:
1300 .Pp
1301 .Dl $ got branch -l
1302 .Pp
1303 In a work tree or a git repository directory, create a new branch called
1304 .Dq unified-buffer-cache
1305 which is forked off the
1306 .Dq master
1307 branch:
1308 .Pp
1309 .Dl $ got branch unified-buffer-cache master
1310 .Pp
1311 Switch an existing work tree to the branch
1312 .Dq unified-buffer-cache .
1313 Local changes in the work tree will be preserved and merged if necessary:
1314 .Pp
1315 .Dl $ got update -b unified-buffer-cache
1316 .Pp
1317 Create a new commit from local changes in a work tree directory.
1318 This new commit will become the head commit of the work tree's current branch:
1319 .Pp
1320 .Dl $ got commit
1321 .Pp
1322 In a work tree or a git repository directory, view changes committed in
1323 the 3 most recent commits to the work tree's branch, or the branch resolved
1324 via the repository's HEAD reference, respectively:
1325 .Pp
1326 .Dl $ got log -p -l 3 -f
1327 .Pp
1328 Add new files and remove obsolete files in a work tree directory:
1329 .Pp
1330 .Dl $ got add sys/uvm/uvm_ubc.c
1331 .Dl $ got remove sys/uvm/uvm_vnode.c
1332 .Pp
1333 Create a new commit from local changes in a work tree directory
1334 with a pre-defined log message.
1335 .Pp
1336 .Dl $ got commit -m 'unify the buffer cache'
1337 .Pp
1338 Update any work tree checked out from the
1339 .Dq unified-buffer-cache
1340 branch to the latest commit on this branch:
1341 .Pp
1342 .Dl $ got update
1343 .Pp
1344 Roll file content on the unified-buffer-cache branch back by one commit,
1345 and then fetch the rolled-back change into the work tree as a local change
1346 to be amended and perhaps committed again:
1347 .Pp
1348 .Dl $ got backout unified-buffer-cache
1349 .Dl $ got commit -m 'roll back previous'
1350 .Dl $ # now back out the previous backout :-)
1351 .Dl $ got backout unified-buffer-cache
1352 .Pp
1353 Fetch new upstream commits into the local repository's master branch.
1354 This step currently requires
1355 .Xr git 1 :
1356 .Pp
1357 .Dl $ cd /var/git/src.git
1358 .Dl $ git fetch origin master:master
1359 .Pp
1360 Rebase the
1361 .Dq unified-buffer-cache
1362 branch on top of the new head commit of the
1363 .Dq master
1364 branch.
1365 .Pp
1366 .Dl $ got update -b master
1367 .Dl $ got rebase unified-buffer-cache
1368 .Pp
1369 Create a patch from all changes on the unified-buffer-cache branch.
1370 The patch can be mailed out for review and applied to
1371 .Ox Ns 's
1372 CVS tree:
1373 .Pp
1374 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1375 .Pp
1376 Edit the entire commit history of the
1377 .Dq unified-buffer-cache
1378 branch:
1379 .Pp
1380 .Dl $ got update -b unified-buffer-cache
1381 .Dl $ got update -c master
1382 .Dl $ got histedit
1383 .Pp
1384 Additional steps are necessary if local changes need to be pushed back
1385 to the remote repository, which currently requires
1386 .Cm git fetch
1387 and
1388 .Cm git push .
1389 Before working against existing branches in a repository cloned with
1390 .Dq git clone --bare ,
1391 a Git
1392 .Dq refspec
1393 must be configured to map all references in the remote repository
1394 into the
1395 .Dq refs/remotes
1396 namespace of the local repository.
1397 This can achieved by setting Git's
1398 .Pa remote.origin.fetch
1399 configuration variable to the value
1400 .Dq +refs/heads/*:refs/remotes/origin/*
1401 with the
1402 .Cm git config
1403 command:
1404 .Pp
1405 .Dl $ cd /var/git/repo
1406 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1407 .Pp
1408 Alternatively, the following
1409 .Pa fetch
1410 configuration item can be added manually to the Git repository's
1411 .Pa config
1412 file:
1413 .Pp
1414 .Dl [remote "origin"]
1415 .Dl url = ...
1416 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1417 .Pp
1418 This configuration leaves the local repository's
1419 .Dq refs/heads
1420 namespace free for use by local branches checked out with
1421 .Cm got checkout
1422 and, if needed, created with
1423 .Cm got branch .
1424 .Pp
1425 Branches in the
1426 .Dq remotes/origin
1427 namespace can be updated with incoming changes from the remote
1428 repository with
1429 .Cm git fetch :
1430 .Pp
1431 .Dl $ cd /var/git/repo
1432 .Dl $ git fetch
1433 .Pp
1434 Before outgoing changes on the local
1435 .Dq master
1436 branch can be pushed to the remote repository, the local
1437 .Dq master
1438 branch must be rebased onto the
1439 .Dq origin/master
1440 branch:
1441 .Pp
1442 .Dl $ got update -b origin/master
1443 .Dl $ got rebase master
1444 .Pp
1445 Changes on the local
1446 .Dq master
1447 branch can then be pushed to the remote
1448 repository with
1449 .Cm git push :
1450 .Pp
1451 .Dl $ cd /var/git/repo
1452 .Dl $ git push origin master
1453 .Sh SEE ALSO
1454 .Xr tog 1 ,
1455 .Xr git-repository 5 ,
1456 .Xr got-worktree 5
1457 .Sh AUTHORS
1458 .An Stefan Sperling Aq Mt stsp@openbsd.org
1459 .An Martin Pieuchot Aq Mt mpi@openbsd.org
1460 .An Joshua Stein Aq Mt jcs@openbsd.org
1461 .Sh CAVEATS
1462 .Nm
1463 is a work-in-progress and many commands remain to be implemented.
1464 At present, the user has to fall back on
1465 .Xr git 1
1466 to perform many tasks, in particular tasks related to repository
1467 administration and tasks which require a network connection.