Blob


1 .\"
2 .\" Copyright (c) 2017 Martin Pieuchot
3 .\" Copyright (c) 2018, 2019, 2020 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, -version
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 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
77 Create an initial commit in a repository from the file hierarchy
78 within the specified
79 .Ar directory .
80 The created commit will not have any parent commits, i.e. it will be a
81 root commit.
82 Also create a new reference which provides a branch name for the newly
83 created commit.
84 Show the path of each imported file to indicate progress.
85 .Pp
86 The
87 .Cm got import
88 command requires the
89 .Ev GOT_AUTHOR
90 environment variable to be set,
91 unless an author has been configured in
92 .Xr got.conf 5
93 or Git's
94 .Dv user.name
95 and
96 .Dv user.email
97 configuration settings can be obtained from the repository's
98 .Pa .git/config
99 file or from Git's global
100 .Pa ~/.gitconfig
101 configuration file.
102 .Pp
103 The options for
104 .Cm got import
105 are as follows:
106 .Bl -tag -width Ds
107 .It Fl b Ar branch
108 Create the specified
109 .Ar branch
110 instead of creating the default branch
111 .Dq main .
112 Use of this option is required if the
113 .Dq main
114 branch already exists.
115 .It Fl m Ar message
116 Use the specified log message when creating the new commit.
117 Without the
118 .Fl m
119 option,
120 .Cm got import
121 opens a temporary file in an editor where a log message can be written.
122 .It Fl r Ar repository-path
123 Use the repository at the specified path.
124 If not specified, assume the repository is located at or above the current
125 working directory.
126 .It Fl I Ar pattern
127 Ignore files or directories with a name which matches the specified
128 .Ar pattern .
129 This option may be specified multiple times to build a list of ignore patterns.
130 The
131 .Ar pattern
132 follows the globbing rules documented in
133 .Xr glob 7 .
134 .El
135 .It Cm im
136 Short alias for
137 .Cm import .
138 .It Cm clone Oo Fl a Oc Oo Fl b Ar branch Oc Oo Fl l Oc Oo Fl m Oc Oo Fl q Oc Oo Fl v Oc Oo Fl R Ar reference Oc Ar repository-URL Op Ar directory
139 Clone a Git repository at the specified
140 .Ar repository-URL
141 into the specified
142 .Ar directory .
143 If no
144 .Ar directory
145 is specified the directory name will be derived from the name of the
146 cloned repository.
147 .Cm got clone
148 will refuse to run if the
149 .Ar directory
150 already exists.
151 .Pp
152 The
153 .Ar repository-URL
154 specifies a protocol scheme, a server hostname, an optional port number
155 separated from the hostname by a colon, and a path to the repository on
156 the server:
157 .Lk scheme://hostname:port/path/to/repository
158 .Pp
159 The following protocol schemes are supported:
160 .Bl -tag -width git+ssh
161 .It git
162 The Git protocol as implemented by the
163 .Xr git-daemon 1
164 server.
165 Use of this protocol is discouraged since it supports neither authentication
166 nor encryption.
167 .It git+ssh
168 The Git protocol wrapped in an authenticated and encrypted
169 .Xr ssh 1
170 tunnel.
171 With this protocol the hostname may contain an embedded username for
172 .Xr ssh 1
173 to use:
174 .Mt user@hostname
175 .It ssh
176 Short alias for git+ssh.
177 .El
178 .Pp
179 Objects in the cloned repository are stored in a pack file which is downloaded
180 from the server.
181 This pack file will then be indexed to facilitate access to the objects stored
182 within.
183 If any objects in the pack file are stored in deltified form, all deltas will
184 be fully resolved in order to compute the ID of such objects.
185 This can take some time.
186 More details about the pack file format are documented in
187 .Xr git-repository 5 .
188 .Pp
189 .Cm got clone
190 creates a remote repository entry in the
191 .Xr got.conf 5
192 and
193 .Pa config
194 files of the cloned repository to store the
195 .Ar repository-url
196 and any
197 .Ar branch
198 or
199 .Ar reference
200 arguments for future use by
201 .Cm got fetch
202 or
203 .Xr git-fetch 1 .
204 .Pp
205 The options for
206 .Cm got clone
207 are as follows:
208 .Bl -tag -width Ds
209 .It Fl a
210 Fetch all branches from the remote repository's
211 .Dq refs/heads/
212 reference namespace and set
213 .Cm fetch-all-branches
214 in the cloned repository's
215 .Xr got.conf 5
216 file for future use by
217 .Cm got fetch .
218 If this option is not specified, a branch resolved via the remote
219 repository's HEAD reference will be fetched.
220 Cannot be used together with the
221 .Fl b
222 option.
223 .It Fl b Ar branch
224 Fetch the specified
225 .Ar branch
226 from the remote repository's
227 .Dq refs/heads/
228 reference namespace.
229 This option may be specified multiple times to build a list of branches
230 to fetch.
231 If the branch corresponding to the remote repository's HEAD reference is not
232 in this list, the cloned repository's HEAD reference will be set to the first
233 branch which was fetched.
234 If this option is not specified, a branch resolved via the remote
235 repository's HEAD reference will be fetched.
236 Cannot be used together with the
237 .Fl a
238 option.
239 .It Fl l
240 List branches and tags available for fetching from the remote repository
241 and exit immediately.
242 Cannot be used together with any of the other options except
243 .Fl q
244 and
245 .Fl v .
246 .It Fl m
247 Create the cloned repository as a mirror of the original repository.
248 This is useful if the cloned repository will not be used to store
249 locally created commits.
250 .Pp
251 The repository's
252 .Xr got.conf 5
253 and
254 .Pa config
255 files will be set up with the
256 .Dq mirror
257 option enabled, such that
258 .Cm got fetch
259 or
260 .Xr git-fetch 1
261 will write incoming changes directly to branches in the
262 .Dq refs/heads/
263 reference namespace, rather than to branches in the
264 .Dq refs/remotes/
265 namespace.
266 This avoids the usual requirement of having to run
267 .Cm got rebase
268 after
269 .Cm got fetch
270 in order to make incoming changes appear on branches in the
271 .Dq refs/heads/
272 namespace.
273 But maintaining custom changes in the cloned repository becomes difficult
274 since such changes will be at risk of being discarded whenever incoming
275 changes are fetched.
276 .It Fl q
277 Suppress progress reporting output.
278 The same option will be passed to
279 .Xr ssh 1
280 if applicable.
281 .It Fl v
282 Verbose mode.
283 Causes
284 .Cm got clone
285 to print debugging messages to standard error output.
286 This option will be passed to
287 .Xr ssh 1
288 if applicable.
289 Multiple -v options increase the verbosity.
290 The maximum is 3.
291 .It Fl R Ar reference
292 In addition to the branches and tags that will be fetched, fetch an arbitrary
293 .Ar reference
294 from the remote repository's
295 .Dq refs/
296 namespace.
297 This option may be specified multiple times to build a list of additional
298 references to fetch.
299 The specified
300 .Ar reference
301 may either be a path to a specific reference, or a reference namespace
302 which will cause all references in this namespace to be fetched.
303 .Pp
304 Each reference will be mapped into the cloned repository's
305 .Dq refs/remotes/
306 namespace, unless the
307 .Fl m
308 option is used to mirror references directly into the cloned repository's
309 .Dq refs/
310 namespace.
311 .Pp
312 .Cm got clone
313 will refuse to fetch references from the remote repository's
314 .Dq refs/remotes/
315 or
316 .Dq refs/got/
317 namespace.
318 .El
319 .It Cm cl
320 Short alias for
321 .Cm clone .
322 .It Cm fetch Oo Fl a Oc Oo Fl b Ar branch Oc Oo Fl d Oc Oo Fl l Oc Oo Fl r Ar repository-path Oc Oo Fl t Oc Oo Fl q Oc Oo Fl v Oc Oo Fl R Ar reference Oc Op Ar remote-repository
323 Fetch new changes from a remote repository.
324 If no
325 .Ar remote-repository
326 is specified,
327 .Dq origin
328 will be used.
329 The remote repository's URL is obtained from the corresponding entry in
330 .Xr got.conf 5
331 or Git's
332 .Pa config
333 file of the local repository, as created by
334 .Cm got clone .
335 .Pp
336 New changes will be stored in a separate pack file downloaded from the server.
337 Optionally, separate pack files stored in the repository can be combined with
338 .Xr git-repack 1 .
339 .Pp
340 By default, branch references in the
341 .Dq refs/remotes/
342 reference namespace will be updated to point at the newly fetched commits.
343 The
344 .Cm got rebase
345 command can then be used to make new changes visible on branches in the
346 .Dq refs/heads/
347 namespace, merging incoming changes with the changes on those branches
348 as necessary.
349 .Pp
350 If the repository was created as a mirror with
351 .Cm got clone -m
352 then all branches in the
353 .Dq refs/heads/
354 namespace will be updated directly to match the corresponding branches in
355 the remote repository.
356 If those branches contained local commits, these commits will no longer be
357 reachable via a reference and will therefore be at risk of being discarded
358 by Git's garbage collector.
359 Maintaining custom changes in a mirror repository is therefore discouraged.
360 .Pp
361 In any case, references in the
362 .Dq refs/tags/
363 namespace will always be fetched and mapped directly to local references
364 in the same namespace.
365 .Pp
366 The options for
367 .Cm got fetch
368 are as follows:
369 .Bl -tag -width Ds
370 .It Fl a
371 Fetch all branches from the remote repository's
372 .Dq refs/heads/
373 reference namespace.
374 This option can be enabled by default for specific repositories in
375 .Xr got.conf 5 .
376 If this option is not specified, a branch resolved via the remote
377 repository's HEAD reference will be fetched.
378 Cannot be used together with the
379 .Fl b
380 option.
381 .It Fl b Ar branch
382 Fetch the specified
383 .Ar branch
384 from the remote repository's
385 .Dq refs/heads/
386 reference namespace.
387 This option may be specified multiple times to build a list of branches
388 to fetch.
389 If this option is not specified, a branch resolved via the remote
390 repository's HEAD reference will be fetched.
391 Cannot be used together with the
392 .Fl a
393 option.
394 .It Fl d
395 Delete branches and tags from the local repository which are no longer
396 present in the remote repository.
397 Only references are deleted.
398 Any commit, tree, tag, and blob objects belonging to deleted branches or
399 tags remain in the repository and may be removed separately with
400 Git's garbage collector.
401 .It Fl l
402 List branches and tags available for fetching from the remote repository
403 and exit immediately.
404 Cannot be used together with any of the other options except
405 .Fl v ,
406 .Fl q ,
407 and
408 .Fl r .
409 .It Fl t
410 Allow existing references in the
411 .Dq refs/tags
412 namespace to be updated if they have changed on the server.
413 If not specified, only new tag references will be created.
414 .It Fl r Ar repository-path
415 Use the repository at the specified path.
416 If not specified, assume the repository is located at or above the current
417 working directory.
418 If this directory is a
419 .Nm
420 work tree, use the repository path associated with this work tree.
421 .It Fl q
422 Suppress progress reporting output.
423 The same option will be passed to
424 .Xr ssh 1
425 if applicable.
426 .It Fl v
427 Verbose mode.
428 Causes
429 .Cm got fetch
430 to print debugging messages to standard error output.
431 The same option will be passed to
432 .Xr ssh 1
433 if applicable.
434 Multiple -v options increase the verbosity.
435 The maximum is 3.
436 .It Fl R Ar reference
437 In addition to the branches and tags that will be fetched, fetch an arbitrary
438 .Ar reference
439 from the remote repository's
440 .Dq refs/
441 namespace.
442 This option may be specified multiple times to build a list of additional
443 references to fetch.
444 The specified
445 .Ar reference
446 may either be a path to a specific reference, or a reference namespace
447 which will cause all references in this namespace to be fetched.
448 .Pp
449 Each reference will be mapped into the local repository's
450 .Dq refs/remotes/
451 namespace, unless the local repository was created as a mirror with
452 .Cm got clone -m
453 in which case references will be mapped directly into the local repository's
454 .Dq refs/
455 namespace.
456 .Pp
457 Once a reference has been fetched, a branch based on it can be created with
458 .Cm got branch
459 if needed.
460 .Pp
461 .Cm got fetch
462 will refuse to fetch references from the remote repository's
463 .Dq refs/remotes/
464 or
465 .Dq refs/got/
466 namespace.
467 .El
468 .It Cm fe
469 Short alias for
470 .Cm fetch .
471 .It Cm checkout Oo Fl E Oc 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
472 Copy files from a repository into a new work tree.
473 Show the status of each affected file, using the following status codes:
474 .Bl -column YXZ description
475 .It A Ta new file was added
476 .It E Ta file already exists in work tree's meta-data
477 .El
478 .Pp
479 If the
480 .Ar work tree path
481 is not specified, either use the last component of
482 .Ar repository path ,
483 or if a
484 .Ar path prefix
485 was specified use the last component of
486 .Ar path prefix .
487 .Pp
488 The options for
489 .Cm got checkout
490 are as follows:
491 .Bl -tag -width Ds
492 .It Fl E
493 Proceed with the checkout operation even if the directory at
494 .Ar work-tree-path
495 is not empty.
496 Existing files will be left intact.
497 .It Fl b Ar branch
498 Check out files from a commit on the specified
499 .Ar branch .
500 If this option is not specified, a branch resolved via the repository's HEAD
501 reference will be used.
502 .It Fl c Ar commit
503 Check out files from the specified
504 .Ar commit
505 on the selected branch.
506 The expected argument is a commit ID SHA1 hash or an existing reference
507 or tag name which will be resolved to a commit ID.
508 An abbreviated hash argument will be expanded to a full SHA1 hash
509 automatically, provided the abbreviation is unique.
510 If this option is not specified, the most recent commit on the selected
511 branch will be used.
512 .Pp
513 If the specified
514 .Ar commit
515 is not contained in the selected branch, a different branch which contains
516 this commit must be specified with the
517 .Fl b
518 option.
519 If no such branch is known a new branch must be created for this
520 commit with
521 .Cm got branch
522 before
523 .Cm got checkout
524 can be used.
525 Checking out work trees with an unknown branch is intentionally not supported.
526 .It Fl p Ar path-prefix
527 Restrict the work tree to a subset of the repository's tree hierarchy.
528 Only files beneath the specified
529 .Ar path-prefix
530 will be checked out.
531 .El
532 .It Cm co
533 Short alias for
534 .Cm checkout .
535 .It Cm update Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Op Ar path ...
536 Update an existing work tree to a different
537 .Ar commit .
538 Change existing files in the work tree as necessary to match file contents
539 of this commit.
540 Preserve any local changes in the work tree and merge them with the
541 incoming changes.
542 .Pp
543 Files which already contain merge conflicts will not be updated to avoid
544 further complications.
545 Such files will be updated when
546 .Cm got update
547 is run again after merge conflicts have been resolved.
548 If the conflicting changes are no longer needed affected files can be
549 reverted with
550 .Cm got revert
551 before running
552 .Cm got update
553 again.
554 .Pp
555 Show the status of each affected file, using the following status codes:
556 .Bl -column YXZ description
557 .It U Ta file was updated and contained no local changes
558 .It G Ta file was updated and local changes were merged cleanly
559 .It C Ta file was updated and conflicts occurred during merge
560 .It D Ta file was deleted
561 .It A Ta new file was added
562 .It \(a~ Ta versioned file is obstructed by a non-regular file
563 .It ! Ta a missing versioned file was restored
564 .It # Ta file was not updated because it contains merge conflicts
565 .It ? Ta changes destined for an unversioned file were not merged
566 .El
567 .Pp
568 If no
569 .Ar path
570 is specified, update the entire work tree.
571 Otherwise, restrict the update operation to files at or within the
572 specified paths.
573 Each path is required to exist in the update operation's target commit.
574 Files in the work tree outside specified paths will remain unchanged and
575 will retain their previously recorded base commit.
576 Some
577 .Nm
578 commands may refuse to run while the work tree contains files from
579 multiple base commits.
580 The base commit of such a work tree can be made consistent by running
581 .Cm got update
582 across the entire work tree.
583 Specifying a
584 .Ar path
585 is incompatible with the
586 .Fl b
587 option.
588 .Pp
589 .Cm got update
590 cannot update paths with staged changes.
591 If changes have been staged with
592 .Cm got stage ,
593 these changes must first be committed with
594 .Cm got commit
595 or unstaged with
596 .Cm got unstage .
597 .Pp
598 The options for
599 .Cm got update
600 are as follows:
601 .Bl -tag -width Ds
602 .It Fl b Ar branch
603 Switch the work tree's branch reference to the specified
604 .Ar branch
605 before updating the work tree.
606 This option requires that all paths in the work tree are updated.
607 .Pp
608 As usual, any local changes in the work tree will be preserved.
609 This can be useful when switching to a newly created branch in order
610 to commit existing local changes to this branch.
611 .Pp
612 Any local changes must be dealt with separately in order to obtain a
613 work tree with pristine file contents corresponding exactly to the specified
614 .Ar branch .
615 Such changes could first be committed to a different branch with
616 .Cm got commit ,
617 or could be discarded with
618 .Cm got revert .
619 .It Fl c Ar commit
620 Update the work tree to the specified
621 .Ar commit .
622 The expected argument is a commit ID SHA1 hash or an existing reference
623 or tag name which will be resolved to a commit ID.
624 An abbreviated hash argument will be expanded to a full SHA1 hash
625 automatically, provided the abbreviation is unique.
626 If this option is not specified, the most recent commit on the work tree's
627 branch will be used.
628 .El
629 .It Cm up
630 Short alias for
631 .Cm update .
632 .It Cm status Oo Fl s Ar status-codes Oc Op Ar path ...
633 Show the current modification status of files in a work tree,
634 using the following status codes:
635 .Bl -column YXZ description
636 .It M Ta modified file
637 .It A Ta file scheduled for addition in next commit
638 .It D Ta file scheduled for deletion in next commit
639 .It C Ta modified or added file which contains merge conflicts
640 .It ! Ta versioned file was expected on disk but is missing
641 .It \(a~ Ta versioned file is obstructed by a non-regular file
642 .It ? Ta unversioned item not tracked by
643 .Nm
644 .It m Ta modified file modes (executable bit only)
645 .It N Ta non-existent
646 .Ar path
647 specified on the command line
648 .El
649 .Pp
650 If no
651 .Ar path
652 is specified, show modifications in the entire work tree.
653 Otherwise, show modifications at or within the specified paths.
654 .Pp
655 If changes have been staged with
656 .Cm got stage ,
657 staged changes are shown in the second output column, using the following
658 status codes:
659 .Bl -column YXZ description
660 .It M Ta file modification is staged
661 .It A Ta file addition is staged
662 .It D Ta file deletion is staged
663 .El
664 .Pp
665 Changes created on top of staged changes are indicated in the first column:
666 .Bl -column YXZ description
667 .It MM Ta file was modified after earlier changes have been staged
668 .It MA Ta file was modified after having been staged for addition
669 .El
670 .Pp
671 The options for
672 .Cm got status
673 are as follows:
674 .Bl -tag -width Ds
675 .It Fl s Ar status-codes
676 Only show files with a modification status matching any of the
677 single-character status codes contained in the
678 .Ar status-codes
679 argument.
680 Any combination of codes from the above list of possible status codes
681 may be specified.
682 For staged files, status codes displayed in either column will be matched.
683 .El
684 .Pp
685 For compatibility with
686 .Xr cvs 1
687 and
688 .Xr git 1 ,
689 .Cm got status
690 reads
691 .Xr glob 7
692 patterns from
693 .Pa .cvsignore
694 and
695 .Pa .gitignore
696 files in each traversed directory and will not display unversioned files
697 which match these patterns.
698 As an extension to
699 .Xr glob 7
700 matching rules,
701 .Cm got status
702 supports consecutive asterisks,
703 .Dq ** ,
704 which will match an arbitrary amount of directories.
705 Unlike
706 .Xr cvs 1 ,
707 .Cm got status
708 only supports a single ignore pattern per line.
709 Unlike
710 .Xr git 1 ,
711 .Cm got status
712 does not support negated ignore patterns prefixed with
713 .Dq \&! ,
714 and gives no special significance to the location of path component separators,
715 .Dq / ,
716 in a pattern.
717 .It Cm st
718 Short alias for
719 .Cm status .
720 .It Cm log Oo Fl b Oc Oo Fl c Ar commit Oc Oo Fl C Ar number Oc Oo Fl l Ar N Oc Oo Fl p Oc Oo Fl P Oc Oo Fl s Ar search-pattern Oc Oo Fl r Ar repository-path Oc Oo Fl R Oc Oo Fl x Ar commit Oc Op Ar path
721 Display history of a repository.
722 If a
723 .Ar path
724 is specified, show only commits which modified this path.
725 If invoked in a work tree, the
726 .Ar path
727 is interpreted relative to the current working directory,
728 and the work tree's path prefix is implicitly prepended.
729 Otherwise, the path is interpreted relative to the repository root.
730 .Pp
731 The options for
732 .Cm got log
733 are as follows:
734 .Bl -tag -width Ds
735 .It Fl b
736 Display individual commits which were merged into the current branch
737 from other branches.
738 By default,
739 .Cm got log
740 shows the linear history of the current branch only.
741 .It Fl c Ar commit
742 Start traversing history at the specified
743 .Ar commit .
744 The expected argument is a commit ID SHA1 hash or an existing reference
745 or tag name which will be resolved to a commit ID.
746 An abbreviated hash argument will be expanded to a full SHA1 hash
747 automatically, provided the abbreviation is unique.
748 If this option is not specified, default to the work tree's current branch
749 if invoked in a work tree, or to the repository's HEAD reference.
750 .It Fl C Ar number
751 Set the number of context lines shown in diffs with
752 .Fl p .
753 By default, 3 lines of context are shown.
754 .It Fl l Ar N
755 Limit history traversal to a given number of commits.
756 If this option is not specified, a default limit value of zero is used,
757 which is treated as an unbounded limit.
758 The
759 .Ev GOT_LOG_DEFAULT_LIMIT
760 environment variable may be set to change this default value.
761 .It Fl p
762 Display the patch of modifications made in each commit.
763 If a
764 .Ar path
765 is specified, only show the patch of modifications at or within this path.
766 .It Fl P
767 Display the list of file paths changed in each commit, using the following
768 status codes:
769 .Bl -column YXZ description
770 .It M Ta modified file
771 .It D Ta file was deleted
772 .It A Ta new file was added
773 .It m Ta modified file modes (executable bit only)
774 .El
775 .It Fl s Ar search-pattern
776 If specified, show only commits with a log message matched by the extended
777 regular expression
778 .Ar search-pattern .
779 When used together with
780 .Fl P
781 then the file paths changed by a commit can be matched as well.
782 Regular expression syntax is documented in
783 .Xr re_format 7 .
784 .It Fl r Ar repository-path
785 Use the repository at the specified path.
786 If not specified, assume the repository is located at or above the current
787 working directory.
788 If this directory is a
789 .Nm
790 work tree, use the repository path associated with this work tree.
791 .It Fl R
792 Determine a set of commits to display as usual, but display these commits
793 in reverse order.
794 .It Fl x Ar commit
795 Stop traversing commit history as soon as the specified
796 .Ar commit
797 has been traversed.
798 This option has no effect if the specified
799 .Ar commit
800 is never traversed.
801 .El
802 .It Cm diff Oo Fl a Oc Oo Fl C Ar number Oc Oo Fl r Ar repository-path Oc Oo Fl s Oc Oo Fl w Oc Op Ar object1 Ar object2 | Ar path
803 When invoked within a work tree with less than two arguments, display
804 local changes in the work tree.
805 If a
806 .Ar path
807 is specified, only show changes within this path.
808 .Pp
809 If two arguments are provided, treat each argument as a reference, a tag
810 name, or an object ID SHA1 hash, and display differences between the
811 corresponding objects.
812 Both objects must be of the same type (blobs, trees, or commits).
813 An abbreviated hash argument will be expanded to a full SHA1 hash
814 automatically, provided the abbreviation is unique.
815 .Pp
816 The options for
817 .Cm got diff
818 are as follows:
819 .Bl -tag -width Ds
820 .It Fl a
821 Treat file contents as ASCII text even if binary data is detected.
822 .It Fl C Ar number
823 Set the number of context lines shown in the diff.
824 By default, 3 lines of context are shown.
825 .It Fl r Ar repository-path
826 Use the repository at the specified path.
827 If not specified, assume the repository is located at or above the current
828 working directory.
829 If this directory is a
830 .Nm
831 work tree, use the repository path associated with this work tree.
832 .It Fl s
833 Show changes staged with
834 .Cm got stage
835 instead of showing local changes in the work tree.
836 This option is only valid when
837 .Cm got diff
838 is invoked in a work tree.
839 .It Fl w
840 Ignore whitespace-only changes.
841 .El
842 .It Cm di
843 Short alias for
844 .Cm diff .
845 .It Cm blame Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Ar path
846 Display line-by-line history of a file at the specified path.
847 .Pp
848 The options for
849 .Cm got blame
850 are as follows:
851 .Bl -tag -width Ds
852 .It Fl c Ar commit
853 Start traversing history at the specified
854 .Ar commit .
855 The expected argument is a commit ID SHA1 hash or an existing reference
856 or tag name which will be resolved to a commit ID.
857 An abbreviated hash argument will be expanded to a full SHA1 hash
858 automatically, provided the abbreviation is unique.
859 .It Fl r Ar repository-path
860 Use the repository at the specified path.
861 If not specified, assume the repository is located at or above the current
862 working directory.
863 If this directory is a
864 .Nm
865 work tree, use the repository path associated with this work tree.
866 .El
867 .It Cm bl
868 Short alias for
869 .Cm blame .
870 .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
871 Display a listing of files and directories at the specified
872 directory path in the repository.
873 Entries shown in this listing may carry one of the following trailing
874 annotations:
875 .Bl -column YXZ description
876 .It @ Ta entry is a symbolic link
877 .It / Ta entry is a directory
878 .It * Ta entry is an executable file
879 .It $ Ta entry is a Git submodule
880 .El
881 .Pp
882 Symbolic link entries are also annotated with the target path of the link.
883 .Pp
884 If no
885 .Ar path
886 is specified, list the repository path corresponding to the current
887 directory of the work tree, or the root directory of the repository
888 if there is no work tree.
889 .Pp
890 The options for
891 .Cm got tree
892 are as follows:
893 .Bl -tag -width Ds
894 .It Fl c Ar commit
895 List files and directories as they appear in the specified
896 .Ar commit .
897 The expected argument is a commit ID SHA1 hash or an existing reference
898 or tag name which will be resolved to a commit ID.
899 An abbreviated hash argument will be expanded to a full SHA1 hash
900 automatically, provided the abbreviation is unique.
901 .It Fl r Ar repository-path
902 Use the repository at the specified path.
903 If not specified, assume the repository is located at or above the current
904 working directory.
905 If this directory is a
906 .Nm
907 work tree, use the repository path associated with this work tree.
908 .It Fl i
909 Show object IDs of files (blob objects) and directories (tree objects).
910 .It Fl R
911 Recurse into sub-directories in the repository.
912 .El
913 .It Cm tr
914 Short alias for
915 .Cm tree .
916 .It Cm ref Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl c Ar object Oc Oo Fl s Ar reference Oc Oo Fl d Oc Op Ar name
917 Manage references in a repository.
918 .Pp
919 References may be listed, created, deleted, and changed.
920 When creating, deleting, or changing a reference the specified
921 .Ar name
922 must be an absolute reference name, i.e. it must begin with
923 .Dq refs/ .
924 .Pp
925 The options for
926 .Cm got ref
927 are as follows:
928 .Bl -tag -width Ds
929 .It Fl r Ar repository-path
930 Use the repository at the specified path.
931 If not specified, assume the repository is located at or above the current
932 working directory.
933 If this directory is a
934 .Nm
935 work tree, use the repository path associated with this work tree.
936 .It Fl l
937 List references in the repository.
938 If no
939 .Ar name
940 is specified, list all existing references in the repository.
941 If
942 .Ar name
943 is a reference namespace, list all references in this namespace.
944 Otherwise, show only the reference with the given
945 .Ar name .
946 Cannot be used together with any other options except
947 .Fl r .
948 .It Fl c Ar object
949 Create a reference or change an existing reference.
950 The reference with the specified
951 .Ar name
952 will point at the specified
953 .Ar object.
954 The expected
955 .Ar object
956 argument is a ID SHA1 hash or an existing reference or tag name which will
957 be resolved to the ID of a corresponding commit, tree, tag, or blob object.
958 Cannot be used together with any other options except
959 .Fl r .
960 .It Fl s Ar reference
961 Create a symbolic reference, or change an existing symbolic reference.
962 The symbolic reference with the specified
963 .Ar name
964 will point at the specified
965 .Ar reference
966 which must already exist in the repository.
967 Care should be taken not to create loops between references when
968 this option is used.
969 Cannot be used together with any other options except
970 .Fl r .
971 .It Fl d
972 Delete the reference with the specified
973 .Ar name
974 from the repository.
975 Cannot be used together with any other options except
976 .Fl r .
977 .El
978 .It Cm branch Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Oo Fl n Oc Op Ar name
979 Create, list, or delete branches.
980 .Pp
981 Branches are managed via references which live in the
982 .Dq refs/heads/
983 reference namespace.
984 The
985 .Cm got branch
986 command operates on references in this namespace only.
987 .Pp
988 If invoked in a work tree without any arguments, print the name of the
989 work tree's current branch.
990 .Pp
991 If a
992 .Ar name
993 argument is passed, attempt to create a branch reference with the given name.
994 By default the new branch reference will point at the latest commit on the
995 work tree's current branch if invoked in a work tree, and otherwise to a commit
996 resolved via the repository's HEAD reference.
997 .Pp
998 If invoked in a work tree, once the branch was created successfully
999 switch the work tree's head reference to the newly created branch and
1000 update files across the entire work tree, just like
1001 .Cm got update -b Ar name
1002 would do.
1003 Show the status of each affected file, using the following status codes:
1004 .Bl -column YXZ description
1005 .It U Ta file was updated and contained no local changes
1006 .It G Ta file was updated and local changes were merged cleanly
1007 .It C Ta file was updated and conflicts occurred during merge
1008 .It D Ta file was deleted
1009 .It A Ta new file was added
1010 .It \(a~ Ta versioned file is obstructed by a non-regular file
1011 .It ! Ta a missing versioned file was restored
1012 .El
1013 .Pp
1014 The options for
1015 .Cm got branch
1016 are as follows:
1017 .Bl -tag -width Ds
1018 .It Fl c Ar commit
1019 Make a newly created branch reference point at the specified
1020 .Ar commit .
1021 The expected
1022 .Ar commit
1023 argument is a commit ID SHA1 hash or an existing reference
1024 or tag name which will be resolved to a commit ID.
1025 .It Fl r Ar repository-path
1026 Use the repository at the specified path.
1027 If not specified, assume the repository is located at or above the current
1028 working directory.
1029 If this directory is a
1030 .Nm
1031 work tree, use the repository path associated with this work tree.
1032 .It Fl l
1033 List all existing branches in the repository.
1034 If invoked in a work tree, the work tree's current branch is shown
1035 with one the following annotations:
1036 .Bl -column YXZ description
1037 .It * Ta work tree's base commit matches the branch tip
1038 .It \(a~ Ta work tree's base commit is out-of-date
1039 .El
1040 .It Fl d Ar name
1041 Delete the branch with the specified name from the repository.
1042 Only the branch reference is deleted.
1043 Any commit, tree, and blob objects belonging to the branch
1044 remain in the repository and may be removed separately with
1045 Git's garbage collector.
1046 .It Fl n
1047 Do not switch and update the work tree after creating a new branch.
1048 .El
1049 .It Cm br
1050 Short alias for
1051 .Cm branch .
1052 .It Cm tag Oo Fl c Ar commit Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Ar name
1053 Manage tags in a repository.
1054 .Pp
1055 Tags are managed via references which live in the
1056 .Dq refs/tags/
1057 reference namespace.
1058 The
1059 .Cm got tag
1060 command operates on references in this namespace only.
1061 References in this namespace point at tag objects which contain a pointer
1062 to another object, a tag message, as well as author and timestamp information.
1063 .Pp
1064 Attempt to create a tag with the given
1065 .Ar name ,
1066 and make this tag point at the given
1067 .Ar commit .
1068 If no commit is specified, default to the latest commit on the work tree's
1069 current branch if invoked in a work tree, and to a commit resolved via
1070 the repository's HEAD reference otherwise.
1071 .Pp
1072 The options for
1073 .Cm got tag
1074 are as follows:
1075 .Bl -tag -width Ds
1076 .It Fl c Ar commit
1077 Make the newly created tag reference point at the specified
1078 .Ar commit .
1079 The expected
1080 .Ar commit
1081 argument is a commit ID SHA1 hash or an existing reference or tag name which
1082 will be resolved to a commit ID.
1083 An abbreviated hash argument will be expanded to a full SHA1 hash
1084 automatically, provided the abbreviation is unique.
1085 .It Fl m Ar message
1086 Use the specified tag message when creating the new tag.
1087 Without the
1088 .Fl m
1089 option,
1090 .Cm got tag
1091 opens a temporary file in an editor where a tag message can be written.
1092 .It Fl r Ar repository-path
1093 Use the repository at the specified path.
1094 If not specified, assume the repository is located at or above the current
1095 working directory.
1096 If this directory is a
1097 .Nm
1098 work tree, use the repository path associated with this work tree.
1099 .It Fl l
1100 List all existing tags in the repository instead of creating a new tag.
1101 If this option is used, no other command-line arguments are allowed.
1102 .El
1103 .Pp
1104 By design, the
1105 .Cm got tag
1106 command will not delete tags or change existing tags.
1107 If a tag must be deleted, the
1108 .Cm got ref
1109 command may be used to delete a tag's reference.
1110 This should only be done if the tag has not already been copied to
1111 another repository.
1112 .It Cm add Oo Fl R Oc Oo Fl I Oc Ar path ...
1113 Schedule unversioned files in a work tree for addition to the
1114 repository in the next commit.
1115 .Pp
1116 The options for
1117 .Cm got add
1118 are as follows:
1119 .Bl -tag -width Ds
1120 .It Fl R
1121 Permit recursion into directories.
1122 If this option is not specified,
1123 .Cm got add
1124 will refuse to run if a specified
1125 .Ar path
1126 is a directory.
1127 .It Fl I
1128 With -R, add files even if they match a
1129 .Cm got status
1130 ignore pattern.
1131 .El
1132 .It Cm remove Oo Fl f Oc Oo Fl k Oc Oo Fl R Oc Oo Fl s Ar status-codes Oc Ar path ...
1133 Remove versioned files from a work tree and schedule them for deletion
1134 from the repository in the next commit.
1135 .Pp
1136 The options for
1137 .Cm got remove
1138 are as follows:
1139 .Bl -tag -width Ds
1140 .It Fl f
1141 Perform the operation even if a file contains local modifications.
1142 .It Fl k
1143 Keep affected files on disk.
1144 .It Fl R
1145 Permit recursion into directories.
1146 If this option is not specified,
1147 .Cm got remove
1148 will refuse to run if a specified
1149 .Ar path
1150 is a directory.
1151 .It Fl s Ar status-codes
1152 Only delete files with a modification status matching one of the
1153 single-character status codes contained in the
1154 .Ar status-codes
1155 argument.
1156 The following status codes may be specified:
1157 .Bl -column YXZ description
1158 .It M Ta modified file (this implies the
1159 .Fl f
1160 option)
1161 .It ! Ta versioned file expected on disk but missing
1162 .El
1163 .El
1164 .It Cm rm
1165 Short alias for
1166 .Cm remove .
1167 .It Cm revert Oo Fl p Oc Oo Fl F Ar response-script Oc Oo Fl R Oc Ar path ...
1168 Revert any local changes in files at the specified paths in a work tree.
1169 File contents will be overwritten with those contained in the
1170 work tree's base commit.
1171 There is no way to bring discarded changes back after
1172 .Cm got revert !
1173 .Pp
1174 If a file was added with
1175 .Cm got add
1176 it will become an unversioned file again.
1177 If a file was deleted with
1178 .Cm got remove
1179 it will be restored.
1180 .Pp
1181 The options for
1182 .Cm got revert
1183 are as follows:
1184 .Bl -tag -width Ds
1185 .It Fl p
1186 Instead of reverting all changes in files, interactively select or reject
1187 changes to revert based on
1188 .Dq y
1189 (revert change),
1190 .Dq n
1191 (keep change), and
1192 .Dq q
1193 (quit reverting this file) responses.
1194 If a file is in modified status, individual patches derived from the
1195 modified file content can be reverted.
1196 Files in added or deleted status may only be reverted in their entirety.
1197 .It Fl F Ar response-script
1198 With the
1199 .Fl p
1200 option, read
1201 .Dq y ,
1202 .Dq n ,
1203 and
1204 .Dq q
1205 responses line-by-line from the specified
1206 .Ar response-script
1207 file instead of prompting interactively.
1208 .It Fl R
1209 Permit recursion into directories.
1210 If this option is not specified,
1211 .Cm got revert
1212 will refuse to run if a specified
1213 .Ar path
1214 is a directory.
1215 .El
1216 .It Cm rv
1217 Short alias for
1218 .Cm revert .
1219 .It Cm commit Oo Fl F Ar path Oc Oo Fl m Ar message Oc Oo Fl N Oc Oo Fl S Oc Op Ar path ...
1220 Create a new commit in the repository from changes in a work tree
1221 and use this commit as the new base commit for the work tree.
1222 If no
1223 .Ar path
1224 is specified, commit all changes in the work tree.
1225 Otherwise, commit changes at or within the specified paths.
1226 .Pp
1227 If changes have been explicitly staged for commit with
1228 .Cm got stage ,
1229 only commit staged changes and reject any specified paths which
1230 have not been staged.
1231 .Pp
1232 .Cm got commit
1233 opens a temporary file in an editor where a log message can be written
1234 unless the
1235 .Fl m
1236 option is used
1237 or the
1238 .Fl F
1239 and
1240 .Fl N
1241 options are used together.
1242 .Pp
1243 Show the status of each affected file, using the following status codes:
1244 .Bl -column YXZ description
1245 .It M Ta modified file
1246 .It D Ta file was deleted
1247 .It A Ta new file was added
1248 .It m Ta modified file modes (executable bit only)
1249 .El
1250 .Pp
1251 Files which are not part of the new commit will retain their previously
1252 recorded base commit.
1253 Some
1254 .Nm
1255 commands may refuse to run while the work tree contains files from
1256 multiple base commits.
1257 The base commit of such a work tree can be made consistent by running
1258 .Cm got update
1259 across the entire work tree.
1260 .Pp
1261 The
1262 .Cm got commit
1263 command requires the
1264 .Ev GOT_AUTHOR
1265 environment variable to be set,
1266 unless an author has been configured in
1267 .Xr got.conf 5
1268 or Git's
1269 .Dv user.name
1270 and
1271 .Dv user.email
1272 configuration settings can be
1273 obtained from the repository's
1274 .Pa .git/config
1275 file or from Git's global
1276 .Pa ~/.gitconfig
1277 configuration file.
1278 .Pp
1279 The options for
1280 .Cm got commit
1281 are as follows:
1282 .Bl -tag -width Ds
1283 .It Fl F Ar path
1284 Use the prepared log message stored in the file found at
1285 .Ar path
1286 when creating the new commit.
1287 .Cm got commit
1288 opens a temporary file in an editor where the prepared log message can be
1289 reviewed and edited further if needed.
1290 Cannot be used together with the
1291 .Fl m
1292 option.
1293 .It Fl m Ar message
1294 Use the specified log message when creating the new commit.
1295 Cannot be used together with the
1296 .Fl F
1297 option.
1298 .It Fl N
1299 This option prevents
1300 .Cm got commit
1301 from opening the commit message in an editor.
1302 It has no effect unless it is used together with the
1303 .Fl F
1304 option and is intended for non-interactive use such as scripting.
1305 .It Fl S
1306 Allow the addition of symbolic links which point outside of the path space
1307 that is under version control.
1308 By default,
1309 .Cm got commit
1310 will reject such symbolic links due to safety concerns.
1311 As a precaution,
1312 .Nm
1313 may decide to represent such a symbolic link as a regular file which contains
1314 the link's target path, rather than creating an actual symbolic link which
1315 points outside of the work tree.
1316 Use of this option is discouraged because external mechanisms such as
1317 .Dq make obj
1318 are better suited for managing symbolic links to paths not under
1319 version control.
1320 .El
1321 .Pp
1322 .Cm got commit
1323 will refuse to run if certain preconditions are not met.
1324 If the work tree's current branch is not in the
1325 .Dq refs/heads/
1326 reference namespace, new commits may not be created on this branch.
1327 Local changes may only be committed if they are based on file content
1328 found in the most recent commit on the work tree's branch.
1329 If a path is found to be out of date,
1330 .Cm got update
1331 must be used first in order to merge local changes with changes made
1332 in the repository.
1333 .It Cm ci
1334 Short alias for
1335 .Cm commit .
1336 .It Cm cherrypick Ar commit
1337 Merge changes from a single
1338 .Ar commit
1339 into the work tree.
1340 The specified
1341 .Ar commit
1342 must be on a different branch than the work tree's base commit.
1343 The expected argument is a reference or a commit ID SHA1 hash.
1344 An abbreviated hash argument will be expanded to a full SHA1 hash
1345 automatically, provided the abbreviation is unique.
1346 .Pp
1347 Show the status of each affected file, using the following status codes:
1348 .Bl -column YXZ description
1349 .It G Ta file was merged
1350 .It C Ta file was merged and conflicts occurred during merge
1351 .It ! Ta changes destined for a missing file were not merged
1352 .It D Ta file was deleted
1353 .It d Ta file's deletion was obstructed by local modifications
1354 .It A Ta new file was added
1355 .It \(a~ Ta changes destined for a non-regular file were not merged
1356 .It ? Ta changes destined for an unversioned file were not merged
1357 .El
1358 .Pp
1359 The merged changes will appear as local changes in the work tree, which
1360 may be viewed with
1361 .Cm got diff ,
1362 amended manually or with further
1363 .Cm got cherrypick
1364 commands,
1365 committed with
1366 .Cm got commit ,
1367 or discarded again with
1368 .Cm got revert .
1369 .Pp
1370 .Cm got cherrypick
1371 will refuse to run if certain preconditions are not met.
1372 If the work tree contains multiple base commits it must first be updated
1373 to a single base commit with
1374 .Cm got update .
1375 If the work tree already contains files with merge conflicts, these
1376 conflicts must be resolved first.
1377 .It Cm cy
1378 Short alias for
1379 .Cm cherrypick .
1380 .It Cm backout Ar commit
1381 Reverse-merge changes from a single
1382 .Ar commit
1383 into the work tree.
1384 The specified
1385 .Ar commit
1386 must be on the same branch as the work tree's base commit.
1387 The expected argument is a reference or a commit ID SHA1 hash.
1388 An abbreviated hash argument will be expanded to a full SHA1 hash
1389 automatically, provided the abbreviation is unique.
1390 .Pp
1391 Show the status of each affected file, using the following status codes:
1392 .Bl -column YXZ description
1393 .It G Ta file was merged
1394 .It C Ta file was merged and conflicts occurred during merge
1395 .It ! Ta changes destined for a missing file were not merged
1396 .It D Ta file was deleted
1397 .It d Ta file's deletion was obstructed by local modifications
1398 .It A Ta new file was added
1399 .It \(a~ Ta changes destined for a non-regular file were not merged
1400 .It ? Ta changes destined for an unversioned file were not merged
1401 .El
1402 .Pp
1403 The reverse-merged changes will appear as local changes in the work tree,
1404 which may be viewed with
1405 .Cm got diff ,
1406 amended manually or with further
1407 .Cm got backout
1408 commands,
1409 committed with
1410 .Cm got commit ,
1411 or discarded again with
1412 .Cm got revert .
1413 .Pp
1414 .Cm got backout
1415 will refuse to run if certain preconditions are not met.
1416 If the work tree contains multiple base commits it must first be updated
1417 to a single base commit with
1418 .Cm got update .
1419 If the work tree already contains files with merge conflicts, these
1420 conflicts must be resolved first.
1421 .It Cm bo
1422 Short alias for
1423 .Cm backout .
1424 .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
1425 Rebase commits on the specified
1426 .Ar branch
1427 onto the tip of the current branch of the work tree.
1428 The
1429 .Ar branch
1430 must share common ancestry with the work tree's current branch.
1431 Rebasing begins with the first descendant commit of the youngest
1432 common ancestor commit shared by the specified
1433 .Ar branch
1434 and the work tree's current branch, and stops once the tip commit
1435 of the specified
1436 .Ar branch
1437 has been rebased.
1438 .Pp
1439 When
1440 .Cm got rebase
1441 is used as intended, the specified
1442 .Ar branch
1443 represents a local commit history and may already contain changes
1444 that are not yet visible in any other repositories.
1445 The work tree's current branch, which must be set with
1446 .Cm got update -b
1447 before starting the
1448 .Cm rebase
1449 operation, represents a branch from a remote repository which shares
1450 a common history with the specified
1451 .Ar branch
1452 but has progressed, and perhaps diverged, due to commits added to the
1453 remote repository.
1454 .Pp
1455 Rebased commits are accumulated on a temporary branch which the work tree
1456 will remain switched to throughout the entire rebase operation.
1457 Commits on this branch represent the same changes with the same log
1458 messages as their counterparts on the original
1459 .Ar branch ,
1460 but with different commit IDs.
1461 Once rebasing has completed successfully, the temporary branch becomes
1462 the new version of the specified
1463 .Ar branch
1464 and the work tree is automatically switched to it.
1465 .Pp
1466 While rebasing commits, show the status of each affected file,
1467 using the following status codes:
1468 .Bl -column YXZ description
1469 .It G Ta file was merged
1470 .It C Ta file was merged and conflicts occurred during merge
1471 .It ! Ta changes destined for a missing file were not merged
1472 .It D Ta file was deleted
1473 .It d Ta file's deletion was obstructed by local modifications
1474 .It A Ta new file was added
1475 .It \(a~ Ta changes destined for a non-regular file were not merged
1476 .It ? Ta changes destined for an unversioned file were not merged
1477 .El
1478 .Pp
1479 If merge conflicts occur the rebase operation is interrupted and may
1480 be continued once conflicts have been resolved.
1481 Alternatively, the rebase operation may be aborted which will leave
1482 .Ar branch
1483 unmodified and the work tree switched back to its original branch.
1484 .Pp
1485 If a merge conflict is resolved in a way which renders the merged
1486 change into a no-op change, the corresponding commit will be elided
1487 when the rebase operation continues.
1488 .Pp
1489 .Cm got rebase
1490 will refuse to run if certain preconditions are not met.
1491 If the work tree is not yet fully updated to the tip commit of its
1492 branch then the work tree must first be updated with
1493 .Cm got update .
1494 If changes have been staged with
1495 .Cm got stage ,
1496 these changes must first be committed with
1497 .Cm got commit
1498 or unstaged with
1499 .Cm got unstage .
1500 If the work tree contains local changes, these changes must first be
1501 committed with
1502 .Cm got commit
1503 or reverted with
1504 .Cm got revert .
1505 If the
1506 .Ar branch
1507 contains changes to files outside of the work tree's path prefix,
1508 the work tree cannot be used to rebase this branch.
1509 .Pp
1510 The
1511 .Cm got update
1512 and
1513 .Cm got commit
1514 commands will refuse to run while a rebase operation is in progress.
1515 Other commands which manipulate the work tree may be used for
1516 conflict resolution purposes.
1517 .Pp
1518 The options for
1519 .Cm got rebase
1520 are as follows:
1521 .Bl -tag -width Ds
1522 .It Fl a
1523 Abort an interrupted rebase operation.
1524 If this option is used, no other command-line arguments are allowed.
1525 .It Fl c
1526 Continue an interrupted rebase operation.
1527 If this option is used, no other command-line arguments are allowed.
1528 .El
1529 .It Cm rb
1530 Short alias for
1531 .Cm rebase .
1532 .It Cm histedit Oo Fl a Oc Oo Fl c Oc Oo Fl f Oc Oo Fl F Ar histedit-script Oc Oo Fl m Oc
1533 Edit commit history between the work tree's current base commit and
1534 the tip commit of the work tree's current branch.
1535 .Pp
1536 Before starting a
1537 .Cm histedit
1538 operation the work tree's current branch must be set with
1539 .Cm got update -b
1540 to the branch which should be edited, unless this branch is already the
1541 current branch of the work tree.
1542 The tip of this branch represents the upper bound (inclusive) of commits
1543 touched by the
1544 .Cm histedit
1545 operation.
1546 .Pp
1547 Furthermore, the work tree's base commit
1548 must be set with
1549 .Cm got update -c
1550 to a point in this branch's commit history where editing should begin.
1551 This commit represents the lower bound (non-inclusive) of commits touched
1552 by the
1553 .Cm histedit
1554 operation.
1555 .Pp
1556 Editing of commit history is controlled via a
1557 .Ar histedit script
1558 which can be written in an editor based on a template, passed on the
1559 command line, or generated with the
1560 .Fl f
1562 .Fl m
1563 options.
1564 .Pp
1565 The format of the histedit script is line-based.
1566 Each line in the script begins with a command name, followed by
1567 whitespace and an argument.
1568 For most commands, the expected argument is a commit ID SHA1 hash.
1569 Any remaining text on the line is ignored.
1570 Lines which begin with the
1571 .Sq #
1572 character are ignored entirely.
1573 .Pp
1574 The available commands are as follows:
1575 .Bl -column YXZ pick-commit
1576 .It pick Ar commit Ta Use the specified commit as it is.
1577 .It edit Ar commit Ta Use the specified commit but once changes have been
1578 merged into the work tree interrupt the histedit operation for amending.
1579 .It fold Ar commit Ta Combine the specified commit with the next commit
1580 listed further below that will be used.
1581 .It drop Ar commit Ta Remove this commit from the edited history.
1582 .It mesg Ar log-message Ta Use the specified single-line log message for
1583 the commit on the previous line.
1584 If the log message argument is left empty, open an editor where a new
1585 log message can be written.
1586 .El
1587 .Pp
1588 Every commit in the history being edited must be mentioned in the script.
1589 Lines may be re-ordered to change the order of commits in the edited history.
1590 No commit may be listed more than once.
1591 .Pp
1592 Edited commits are accumulated on a temporary branch which the work tree
1593 will remain switched to throughout the entire histedit operation.
1594 Once history editing has completed successfully, the temporary branch becomes
1595 the new version of the work tree's branch and the work tree is automatically
1596 switched to it.
1597 .Pp
1598 While merging commits, show the status of each affected file,
1599 using the following status codes:
1600 .Bl -column YXZ description
1601 .It G Ta file was merged
1602 .It C Ta file was merged and conflicts occurred during merge
1603 .It ! Ta changes destined for a missing file were not merged
1604 .It D Ta file was deleted
1605 .It d Ta file's deletion was obstructed by local modifications
1606 .It A Ta new file was added
1607 .It \(a~ Ta changes destined for a non-regular file were not merged
1608 .It ? Ta changes destined for an unversioned file were not merged
1609 .El
1610 .Pp
1611 If merge conflicts occur the histedit operation is interrupted and may
1612 be continued once conflicts have been resolved.
1613 Alternatively, the histedit operation may be aborted which will leave
1614 the work tree switched back to its original branch.
1615 .Pp
1616 If a merge conflict is resolved in a way which renders the merged
1617 change into a no-op change, the corresponding commit will be elided
1618 when the histedit operation continues.
1619 .Pp
1620 .Cm got histedit
1621 will refuse to run if certain preconditions are not met.
1622 If the work tree's current branch is not in the
1623 .Dq refs/heads/
1624 reference namespace, the history of the branch may not be edited.
1625 If the work tree contains multiple base commits it must first be updated
1626 to a single base commit with
1627 .Cm got update .
1628 If changes have been staged with
1629 .Cm got stage ,
1630 these changes must first be committed with
1631 .Cm got commit
1632 or unstaged with
1633 .Cm got unstage .
1634 If the work tree contains local changes, these changes must first be
1635 committed with
1636 .Cm got commit
1637 or reverted with
1638 .Cm got revert .
1639 If the edited history contains changes to files outside of the work tree's
1640 path prefix, the work tree cannot be used to edit the history of this branch.
1641 .Pp
1642 The
1643 .Cm got update ,
1644 .Cm got rebase ,
1645 and
1646 .Cm got integrate
1647 commands will refuse to run while a histedit operation is in progress.
1648 Other commands which manipulate the work tree may be used, and the
1649 .Cm got commit
1650 command may be used to commit arbitrary changes to the temporary branch
1651 while the histedit operation is interrupted.
1652 .Pp
1653 The options for
1654 .Cm got histedit
1655 are as follows:
1656 .Bl -tag -width Ds
1657 .It Fl a
1658 Abort an interrupted histedit operation.
1659 If this option is used, no other command-line arguments are allowed.
1660 .It Fl c
1661 Continue an interrupted histedit operation.
1662 If this option is used, no other command-line arguments are allowed.
1663 .It Fl f
1664 Fold all commits into a single commit.
1665 This option is a quick equivalent to a histedit script which folds all
1666 commits, combining them all into one commit.
1667 The
1668 .Fl f
1669 option can only be used when starting a new histedit operation.
1670 If this option is used, no other command-line arguments are allowed.
1671 .It Fl F Ar histedit-script
1672 Use the specified
1673 .Ar histedit-script
1674 instead of opening a temporary file in an editor where a histedit script
1675 can be written.
1676 .It Fl m
1677 Edit log messages only.
1678 This option is a quick equivalent to a histedit script which edits
1679 only log messages but otherwise leaves every picked commit as-is.
1680 The
1681 .Fl m
1682 option can only be used when starting a new histedit operation.
1683 If this option is used, no other command-line arguments are allowed.
1684 .El
1685 .It Cm he
1686 Short alias for
1687 .Cm histedit .
1688 .It Cm integrate Ar branch
1689 Integrate the specified
1690 .Ar branch
1691 into the work tree's current branch.
1692 Files in the work tree are updated to match the contents on the integrated
1693 .Ar branch ,
1694 and the reference of the work tree's branch is changed to point at the
1695 head commit of the integrated
1696 .Ar branch .
1697 .Pp
1698 Both branches can be considered equivalent after integration since they
1699 will be pointing at the same commit.
1700 Both branches remain available for future work, if desired.
1701 In case the integrated
1702 .Ar branch
1703 is no longer needed it may be deleted with
1704 .Cm got branch -d .
1705 .Pp
1706 Show the status of each affected file, using the following status codes:
1707 .Bl -column YXZ description
1708 .It U Ta file was updated
1709 .It D Ta file was deleted
1710 .It A Ta new file was added
1711 .It \(a~ Ta versioned file is obstructed by a non-regular file
1712 .It ! Ta a missing versioned file was restored
1713 .El
1714 .Pp
1715 .Cm got integrate
1716 will refuse to run if certain preconditions are not met.
1717 Most importantly, the
1718 .Ar branch
1719 must have been rebased onto the work tree's current branch with
1720 .Cm got rebase
1721 before it can be integrated, in order to linearize commit history and
1722 resolve merge conflicts.
1723 If the work tree contains multiple base commits it must first be updated
1724 to a single base commit with
1725 .Cm got update .
1726 If changes have been staged with
1727 .Cm got stage ,
1728 these changes must first be committed with
1729 .Cm got commit
1730 or unstaged with
1731 .Cm got unstage .
1732 If the work tree contains local changes, these changes must first be
1733 committed with
1734 .Cm got commit
1735 or reverted with
1736 .Cm got revert .
1737 .It Cm ig
1738 Short alias for
1739 .Cm integrate .
1740 .It Cm stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Oo Fl S Oc Op Ar path ...
1741 Stage local changes for inclusion in the next commit.
1742 If no
1743 .Ar path
1744 is specified, stage all changes in the work tree.
1745 Otherwise, stage changes at or within the specified paths.
1746 Paths may be staged if they are added, modified, or deleted according to
1747 .Cm got status .
1748 .Pp
1749 Show the status of each affected file, using the following status codes:
1750 .Bl -column YXZ description
1751 .It A Ta file addition has been staged
1752 .It M Ta file modification has been staged
1753 .It D Ta file deletion has been staged
1754 .El
1755 .Pp
1756 Staged file contents are saved in newly created blob objects in the repository.
1757 These blobs will be referred to by tree objects once staged changes have been
1758 committed.
1759 .Pp
1760 Staged changes affect the behaviour of
1761 .Cm got commit ,
1762 .Cm got status ,
1763 and
1764 .Cm got diff .
1765 While paths with staged changes exist, the
1766 .Cm got commit
1767 command will refuse to commit any paths which do not have staged changes.
1768 Local changes created on top of staged changes can only be committed if
1769 the path is staged again, or if the staged changes are committed first.
1770 The
1771 .Cm got status
1772 command will show both local changes and staged changes.
1773 The
1774 .Cm got diff
1775 command is able to display local changes relative to staged changes,
1776 and to display staged changes relative to the repository.
1777 The
1778 .Cm got revert
1779 command cannot revert staged changes but may be used to revert
1780 local changes created on top of staged changes.
1781 .Pp
1782 The options for
1783 .Cm got stage
1784 are as follows:
1785 .Bl -tag -width Ds
1786 .It Fl l
1787 Instead of staging new changes, list paths which are already staged,
1788 along with the IDs of staged blob objects and stage status codes.
1789 If paths were provided in the command line show the staged paths
1790 among the specified paths.
1791 Otherwise, show all staged paths.
1792 .It Fl p
1793 Instead of staging the entire content of a changed file, interactively
1794 select or reject changes for staging based on
1795 .Dq y
1796 (stage change),
1797 .Dq n
1798 (reject change), and
1799 .Dq q
1800 (quit staging this file) responses.
1801 If a file is in modified status, individual patches derived from the
1802 modified file content can be staged.
1803 Files in added or deleted status may only be staged or rejected in
1804 their entirety.
1805 .It Fl F Ar response-script
1806 With the
1807 .Fl p
1808 option, read
1809 .Dq y ,
1810 .Dq n ,
1811 and
1812 .Dq q
1813 responses line-by-line from the specified
1814 .Ar response-script
1815 file instead of prompting interactively.
1816 .It Fl S
1817 Allow staging of symbolic links which point outside of the path space
1818 that is under version control.
1819 By default,
1820 .Cm got stage
1821 will reject such symbolic links due to safety concerns.
1822 As a precaution,
1823 .Nm
1824 may decide to represent such a symbolic link as a regular file which contains
1825 the link's target path, rather than creating an actual symbolic link which
1826 points outside of the work tree.
1827 Use of this option is discouraged because external mechanisms such as
1828 .Dq make obj
1829 are better suited for managing symbolic links to paths not under
1830 version control.
1831 .El
1832 .Pp
1833 .Cm got stage
1834 will refuse to run if certain preconditions are not met.
1835 If a file contains merge conflicts, these conflicts must be resolved first.
1836 If a file is found to be out of date relative to the head commit on the
1837 work tree's current branch, the file must be updated with
1838 .Cm got update
1839 before it can be staged (however, this does not prevent the file from
1840 becoming out-of-date at some point after having been staged).
1841 .Pp
1842 The
1843 .Cm got update ,
1844 .Cm got rebase ,
1845 and
1846 .Cm got histedit
1847 commands will refuse to run while staged changes exist.
1848 If staged changes cannot be committed because a staged path
1849 is out of date, the path must be unstaged with
1850 .Cm got unstage
1851 before it can be updated with
1852 .Cm got update ,
1853 and may then be staged again if necessary.
1854 .It Cm sg
1855 Short alias for
1856 .Cm stage .
1857 .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1858 Merge staged changes back into the work tree and put affected paths
1859 back into non-staged status.
1860 If no
1861 .Ar path
1862 is specified, unstage all staged changes across the entire work tree.
1863 Otherwise, unstage changes at or within the specified paths.
1864 .Pp
1865 Show the status of each affected file, using the following status codes:
1866 .Bl -column YXZ description
1867 .It G Ta file was unstaged
1868 .It C Ta file was unstaged and conflicts occurred during merge
1869 .It ! Ta changes destined for a missing file were not merged
1870 .It D Ta file was staged as deleted and still is deleted
1871 .It d Ta file's deletion was obstructed by local modifications
1872 .It \(a~ Ta changes destined for a non-regular file were not merged
1873 .El
1874 .Pp
1875 The options for
1876 .Cm got unstage
1877 are as follows:
1878 .Bl -tag -width Ds
1879 .It Fl p
1880 Instead of unstaging the entire content of a changed file, interactively
1881 select or reject changes for unstaging based on
1882 .Dq y
1883 (unstage change),
1884 .Dq n
1885 (keep change staged), and
1886 .Dq q
1887 (quit unstaging this file) responses.
1888 If a file is staged in modified status, individual patches derived from the
1889 staged file content can be unstaged.
1890 Files staged in added or deleted status may only be unstaged in their entirety.
1891 .It Fl F Ar response-script
1892 With the
1893 .Fl p
1894 option, read
1895 .Dq y ,
1896 .Dq n ,
1897 and
1898 .Dq q
1899 responses line-by-line from the specified
1900 .Ar response-script
1901 file instead of prompting interactively.
1902 .El
1903 .It Cm ug
1904 Short alias for
1905 .Cm unstage .
1906 .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1907 Parse and print contents of objects to standard output in a line-based
1908 text format.
1909 Content of commit, tree, and tag objects is printed in a way similar
1910 to the actual content stored in such objects.
1911 Blob object contents are printed as they would appear in files on disk.
1912 .Pp
1913 Attempt to interpret each argument as a reference, a tag name, or
1914 an object ID SHA1 hash.
1915 References will be resolved to an object ID.
1916 Tag names will resolved to a tag object.
1917 An abbreviated hash argument will be expanded to a full SHA1 hash
1918 automatically, provided the abbreviation is unique.
1919 .Pp
1920 If none of the above interpretations produce a valid result, or if the
1921 .Fl P
1922 option is used, attempt to interpret the argument as a path which will
1923 be resolved to the ID of an object found at this path in the repository.
1924 .Pp
1925 The options for
1926 .Cm got cat
1927 are as follows:
1928 .Bl -tag -width Ds
1929 .It Fl c Ar commit
1930 Look up paths in the specified
1931 .Ar commit .
1932 If this option is not used, paths are looked up in the commit resolved
1933 via the repository's HEAD reference.
1934 The expected argument is a commit ID SHA1 hash or an existing reference
1935 or tag name which will be resolved to a commit ID.
1936 An abbreviated hash argument will be expanded to a full SHA1 hash
1937 automatically, provided the abbreviation is unique.
1938 .It Fl r Ar repository-path
1939 Use the repository at the specified path.
1940 If not specified, assume the repository is located at or above the current
1941 working directory.
1942 If this directory is a
1943 .Nm
1944 work tree, use the repository path associated with this work tree.
1945 .It Fl P
1946 Interpret all arguments as paths only.
1947 This option can be used to resolve ambiguity in cases where paths
1948 look like tag names, reference names, or object IDs.
1949 .El
1950 .It Cm info Op Ar path ...
1951 Display meta-data stored in a work tree.
1952 See
1953 .Xr got-worktree 5
1954 for details.
1955 .Pp
1956 The work tree to use is resolved implicitly by walking upwards from the
1957 current working directory.
1958 .Pp
1959 If one or more
1960 .Ar path
1961 arguments are specified, show additional per-file information for tracked
1962 files located at or within these paths.
1963 If a
1964 .Ar path
1965 argument corresponds to the work tree's root directory, display information
1966 for all tracked files.
1967 .El
1968 .Sh ENVIRONMENT
1969 .Bl -tag -width GOT_AUTHOR
1970 .It Ev GOT_AUTHOR
1971 The author's name and email address for
1972 .Cm got commit
1973 and
1974 .Cm got import ,
1975 for example:
1976 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1977 Because
1978 .Xr git 1
1979 may fail to parse commits without an email address in author data,
1980 .Nm
1981 attempts to reject
1982 .Ev GOT_AUTHOR
1983 environment variables with a missing email address.
1984 .Pp
1985 .Ev GOT_AUTHOR will be overriden by configuration settings in
1986 .Xr got.conf 5
1987 or by Git's
1988 .Dv user.name
1989 and
1990 .Dv user.email
1991 configuration settings in the repository's
1992 .Pa .git/config
1993 file.
1994 The
1995 .Dv user.name
1996 and
1997 .Dv user.email
1998 configuration settings contained in Git's global
1999 .Pa ~/.gitconfig
2000 configuration file will only be used if neither
2001 .Xr got.conf 5
2002 nor the
2003 .Ev GOT_AUTHOR
2004 environment variable provide author information.
2005 .It Ev VISUAL , EDITOR
2006 The editor spawned by
2007 .Cm got commit ,
2008 .Cm got histedit ,
2009 .Cm got import ,
2011 .Cm got tag .
2012 If not set, the
2013 .Xr ed 1
2014 text editor will be spawned in order to give
2015 .Xr ed 1
2016 the attention it deserves.
2017 .It Ev GOT_LOG_DEFAULT_LIMIT
2018 The default limit on the number of commits traversed by
2019 .Cm got log .
2020 If set to zero, the limit is unbounded.
2021 This variable will be silently ignored if it is set to a non-numeric value.
2022 .El
2023 .Sh FILES
2024 .Bl -tag -width packed-refs -compact
2025 .It Pa got.conf
2026 Repository-wide configuration settings for
2027 .Nm .
2028 If present, a
2029 .Xr got.conf 5
2030 configuration file located in the root directory of a Git repository
2031 supersedes any relevant settings in Git's
2032 .Pa config
2033 file.
2034 .Pp
2035 .It Pa .got/got.conf
2036 Worktree-specific configuration settings for
2037 .Nm .
2038 If present, a
2039 .Xr got.conf
2040 configuration file in the
2041 .Pa .got
2042 meta-data directory of a work tree supersedes any relevant settings in
2043 the repository's
2044 .Xr got.conf 5
2045 configuration file and Git's
2046 .Pa config
2047 file.
2048 .El
2049 .Sh EXIT STATUS
2050 .Ex -std got
2051 .Sh EXAMPLES
2052 Clone an existing Git repository for use with
2053 .Nm .
2054 .Pp
2055 .Dl $ cd /var/git/
2056 .Dl $ got clone ssh://git@github.com/openbsd/src.git
2057 .Pp
2058 Use of HTTP URLs currently requires
2059 .Xr git 1 :
2060 .Pp
2061 .Dl $ cd /var/git/
2062 .Dl $ git clone --bare https://github.com/openbsd/src.git
2063 .Pp
2064 Alternatively, for quick and dirty local testing of
2065 .Nm
2066 a new Git repository could be created and populated with files,
2067 e.g. from a temporary CVS checkout located at
2068 .Pa /tmp/src :
2069 .Pp
2070 .Dl $ got init /var/git/src.git
2071 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
2072 .Pp
2073 Check out a work tree from the Git repository to /usr/src:
2074 .Pp
2075 .Dl $ got checkout /var/git/src.git /usr/src
2076 .Pp
2077 View local changes in a work tree directory:
2078 .Pp
2079 .Dl $ got diff | less
2080 .Pp
2081 In a work tree, display files in a potentially problematic state:
2082 .Pp
2083 .Dl $ got status -s 'C!~?'
2084 .Pp
2085 Interactively revert selected local changes in a work tree directory:
2086 .Pp
2087 .Dl $ got revert -p -R\ .
2088 .Pp
2089 In a work tree or a git repository directory, list all branch references:
2090 .Pp
2091 .Dl $ got branch -l
2092 .Pp
2093 In a work tree or a git repository directory, create a new branch called
2094 .Dq unified-buffer-cache
2095 which is forked off the
2096 .Dq master
2097 branch:
2098 .Pp
2099 .Dl $ got branch -c master unified-buffer-cache
2100 .Pp
2101 Switch an existing work tree to the branch
2102 .Dq unified-buffer-cache .
2103 Local changes in the work tree will be preserved and merged if necessary:
2104 .Pp
2105 .Dl $ got update -b unified-buffer-cache
2106 .Pp
2107 Create a new commit from local changes in a work tree directory.
2108 This new commit will become the head commit of the work tree's current branch:
2109 .Pp
2110 .Dl $ got commit
2111 .Pp
2112 In a work tree or a git repository directory, view changes committed in
2113 the 3 most recent commits to the work tree's branch, or the branch resolved
2114 via the repository's HEAD reference, respectively:
2115 .Pp
2116 .Dl $ got log -p -l 3
2117 .Pp
2118 As above, but display changes in the order in which
2119 .Xr patch 1
2120 could apply them in sequence:
2121 .Pp
2122 .Dl $ got log -p -l 3 -R
2123 .Pp
2124 In a work tree or a git repository directory, log the history of a subdirectory:
2125 .Pp
2126 .Dl $ got log sys/uvm
2127 .Pp
2128 While operating inside a work tree, paths are specified relative to the current
2129 working directory, so this command will log the subdirectory
2130 .Pa sys/uvm :
2131 .Pp
2132 .Dl $ cd sys/uvm && got log\ .
2133 .Pp
2134 And this command has the same effect:
2135 .Pp
2136 .Dl $ cd sys/dev/usb && got log ../../uvm
2137 .Pp
2138 And this command displays work tree meta-data about all tracked files:
2139 .Pp
2140 .Dl $ cd /usr/src
2141 .Dl $ got info\ . | less
2142 .Pp
2143 Add new files and remove obsolete files in a work tree directory:
2144 .Pp
2145 .Dl $ got add sys/uvm/uvm_ubc.c
2146 .Dl $ got remove sys/uvm/uvm_vnode.c
2147 .Pp
2148 Create a new commit from local changes in a work tree directory
2149 with a pre-defined log message.
2150 .Pp
2151 .Dl $ got commit -m 'unify the buffer cache'
2152 .Pp
2153 Alternatively, create a new commit from local changes in a work tree
2154 directory with a log message that has been prepared in the file
2155 .Pa /tmp/msg:
2156 .Pp
2157 .Dl $ got commit -F /tmp/msg
2158 .Pp
2159 Update any work tree checked out from the
2160 .Dq unified-buffer-cache
2161 branch to the latest commit on this branch:
2162 .Pp
2163 .Dl $ got update
2164 .Pp
2165 Roll file content on the unified-buffer-cache branch back by one commit,
2166 and then fetch the rolled-back change into the work tree as a local change
2167 to be amended and perhaps committed again:
2168 .Pp
2169 .Dl $ got backout unified-buffer-cache
2170 .Dl $ got commit -m 'roll back previous'
2171 .Dl $ # now back out the previous backout :-)
2172 .Dl $ got backout unified-buffer-cache
2173 .Pp
2174 Fetch new upstream commits into the local repository's
2175 .Dq origin/master
2176 branch:
2177 .Pp
2178 .Dl $ cd /usr/src
2179 .Dl $ got fetch
2180 .Pp
2181 In a repository created with a HTTP URL and
2182 .Cm git clone --bare
2183 the
2184 .Xr git-fetch 1
2185 command must be used instead:
2186 .Pp
2187 .Dl $ cd /var/git/src.git
2188 .Dl $ git fetch origin master:refs/remotes/origin/master
2189 .Pp
2190 Rebase the local
2191 .Dq master
2192 branch to merge the new changes that are now visible on the
2193 .Dq origin/master
2194 branch:
2195 .Pp
2196 .Dl $ cd /usr/src
2197 .Dl $ got update -b origin/master
2198 .Dl $ got rebase master
2199 .Pp
2200 Rebase the
2201 .Dq unified-buffer-cache
2202 branch on top of the new head commit of the
2203 .Dq master
2204 branch.
2205 .Pp
2206 .Dl $ got update -b master
2207 .Dl $ got rebase unified-buffer-cache
2208 .Pp
2209 Create a patch from all changes on the unified-buffer-cache branch.
2210 The patch can be mailed out for review and applied to
2211 .Ox Ns 's
2212 CVS tree:
2213 .Pp
2214 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
2215 .Pp
2216 Edit the entire commit history of the
2217 .Dq unified-buffer-cache
2218 branch:
2219 .Pp
2220 .Dl $ got update -b unified-buffer-cache
2221 .Dl $ got update -c master
2222 .Dl $ got histedit
2223 .Pp
2224 In order to merge changes committed to the
2225 .Dq unified-buffer-cache
2226 branch back into the
2227 .Dq master
2228 branch, the
2229 .Dq unified-buffer-cache
2230 branch must first be rebased onto the
2231 .Dq master
2232 branch:
2233 .Pp
2234 .Dl $ got update -b master
2235 .Dl $ got rebase unified-buffer-cache
2236 .Pp
2237 Changes on the
2238 .Dq unified-buffer-cache
2239 branch can now be made visible on the
2240 .Dq master
2241 branch with
2242 .Cm got integrate .
2243 Because the rebase operation switched the work tree to the
2244 .Dq unified-buffer-cache
2245 branch, the work tree must be switched back to the
2246 .Dq master
2247 branch before the
2248 .Dq unified-buffer-cache
2249 branch can be integrated into
2250 .Dq master :
2251 .Pp
2252 .Dl $ got update -b master
2253 .Dl $ got integrate unified-buffer-cache
2254 .Pp
2255 Additional steps may be necessary if local changes need to be pushed back
2256 to the remote repository, which currently requires
2257 .Cm git push .
2258 Before working against existing branches in a repository cloned with
2259 .Cm git clone --bare
2260 instead of
2261 .Cm got clone ,
2262 a Git
2263 .Dq refspec
2264 must be configured to map all references in the remote repository
2265 into the
2266 .Dq refs/remotes
2267 namespace of the local repository.
2268 This can achieved by setting Git's
2269 .Pa remote.origin.fetch
2270 configuration variable to the value
2271 .Dq +refs/heads/*:refs/remotes/origin/*
2272 with the
2273 .Cm git config
2274 command:
2275 .Pp
2276 .Dl $ cd /var/git/repo
2277 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
2278 .Pp
2279 Additionally, the
2280 .Dq mirror
2281 option must be disabled:
2282 .Pp
2283 .Dl $ cd /var/git/repo
2284 .Dl $ git config remote.origin.mirror false
2285 .Pp
2286 Alternatively, the following
2287 .Xr git-fetch 1
2288 configuration item can be added manually to the Git repository's
2289 .Pa config
2290 file:
2291 .Pp
2292 .Dl [remote "origin"]
2293 .Dl url = ...
2294 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
2295 .Dl mirror = false
2296 .Pp
2297 This configuration leaves the local repository's
2298 .Dq refs/heads
2299 namespace free for use by local branches checked out with
2300 .Cm got checkout
2301 and, if needed, created with
2302 .Cm got branch .
2303 .Pp
2304 Branches in the
2305 .Dq remotes/origin
2306 namespace can now be updated with incoming changes from the remote
2307 repository with
2308 .Cm got fetch
2310 .Xr git-fetch 1
2311 without extra command line arguments:
2312 .Pp
2313 .Dl $ cd /var/git/repo
2314 .Dl $ git fetch
2315 .Pp
2316 To make changes fetched from the remote repository appear on the
2317 .Dq master
2318 branch, the
2319 .Dq master
2320 branch must be rebased onto the
2321 .Dq origin/master
2322 branch.
2323 This will also merge local changes, if any, with the incoming changes:
2324 .Pp
2325 .Dl $ got update -b origin/master
2326 .Dl $ got rebase master
2327 .Pp
2328 On the
2329 .Dq master
2330 branch, log messages for local changes can now be amended with
2331 .Dq OK
2332 by other developers and any other important new information:
2333 .Pp
2334 .Dl $ got update -c origin/master
2335 .Dl $ got histedit -m
2336 .Pp
2337 Local changes on the
2338 .Dq master
2339 branch can then be pushed to the remote
2340 repository with
2341 .Cm git push :
2342 .Pp
2343 .Dl $ cd /var/git/repo
2344 .Dl $ git push origin master
2345 .Sh SEE ALSO
2346 .Xr tog 1 ,
2347 .Xr git-repository 5 ,
2348 .Xr got-worktree 5 ,
2349 .Xr got.conf 5
2350 .Sh AUTHORS
2351 .An Stefan Sperling Aq Mt stsp@openbsd.org
2352 .An Martin Pieuchot Aq Mt mpi@openbsd.org
2353 .An Joshua Stein Aq Mt jcs@openbsd.org
2354 .An Ori Bernstein Aq Mt ori@openbsd.org
2355 .Sh CAVEATS
2356 .Nm
2357 is a work-in-progress and some features remain to be implemented.
2359 At present, the user has to fall back on
2360 .Xr git 1
2361 to perform some tasks.
2362 In particular:
2363 .Bl -bullet
2364 .It
2365 Reading from remote repositories over HTTP or HTTPS protocols requires
2366 .Xr git-clone 1
2367 and
2368 .Xr git-fetch 1 .
2369 .It
2370 Writing to remote repositories, over any protocol, requires
2371 .Xr git-push 1 .
2372 .It
2373 Packing repositories, which reduces disk space consumption and improves
2374 read-access performance, requires
2375 .Xr git-repack 1 .
2376 .It
2377 Exporting data from repositories requires
2378 .Xr git-fast-export 1 .
2379 .It
2380 Importing data into repositories requires
2381 .Xr git-fast-import 1 .
2382 .It
2383 Reducing the size of repositories by removing redundant or unreferenced
2384 data requires
2385 .Xr git-gc 1 .
2386 .It
2387 The creation of merge commits, i.e. commits with two or more parent commits,
2388 requires
2389 .Xr git-merge 1 .
2390 .It
2391 In situations where files or directories were moved around
2392 .Cm got
2393 will not automatically merge changes to new locations and
2394 .Xr git 1
2395 will usually produce better results.
2396 .El