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