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 .Op Fl hV
26 .Ar command
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 .Tg im
66 .It Xo
67 .Cm import
68 .Op Fl b Ar branch
69 .Op Fl I Ar pattern
70 .Op Fl m Ar message
71 .Op Fl r Ar repository-path
72 .Ar directory
73 .Xc
74 .Dl Pq alias: Cm im
75 Create an initial commit in a repository from the file hierarchy
76 within the specified
77 .Ar directory .
78 The created commit will not have any parent commits, i.e. it will be a
79 root commit.
80 Also create a new reference which provides a branch name for the newly
81 created commit.
82 Show the path of each imported file to indicate progress.
83 .Pp
84 The
85 .Cm got import
86 command requires the
87 .Ev GOT_AUTHOR
88 environment variable to be set,
89 unless an author has been configured in
90 .Xr got.conf 5
91 or Git's
92 .Dv user.name
93 and
94 .Dv user.email
95 configuration settings can be obtained from the repository's
96 .Pa .git/config
97 file or from Git's global
98 .Pa ~/.gitconfig
99 configuration file.
100 .Pp
101 The options for
102 .Cm got import
103 are as follows:
104 .Bl -tag -width Ds
105 .It Fl b Ar branch
106 Create the specified
107 .Ar branch .
108 If this option is not specified, a branch corresponding to the repository's
109 HEAD reference will be used.
110 Use of this option is required if the branch resolved via the repository's
111 HEAD reference already exists.
112 .It Fl I Ar pattern
113 Ignore files or directories with a name which matches the specified
114 .Ar pattern .
115 This option may be specified multiple times to build a list of ignore patterns.
116 The
117 .Ar pattern
118 follows the globbing rules documented in
119 .Xr glob 7 .
120 Ignore patterns which end with a slash,
121 .Dq / ,
122 will only match directories.
123 .It Fl m Ar message
124 Use the specified log message when creating the new commit.
125 Without the
126 .Fl m
127 option,
128 .Cm got import
129 opens a temporary file in an editor where a log message can be written.
130 .It Fl r Ar repository-path
131 Use the repository at the specified path.
132 If not specified, assume the repository is located at or above the current
133 working directory.
134 .El
135 .Tg cl
136 .It Xo
137 .Cm clone
138 .Op Fl almqv
139 .Op Fl b Ar branch
140 .Op Fl R Ar reference
141 .Ar repository-URL
142 .Op Ar directory
143 .Xc
144 .Dl Pq alias: Cm cl
145 Clone a Git repository at the specified
146 .Ar repository-URL
147 into the specified
148 .Ar directory .
149 If no
150 .Ar directory
151 is specified, the directory name will be derived from the name of the
152 cloned repository.
153 .Cm got clone
154 will refuse to run if the
155 .Ar directory
156 already exists.
157 .Pp
158 The
159 .Ar repository-URL
160 specifies a protocol scheme, a server hostname, an optional port number
161 separated from the hostname by a colon, and a path to the repository on
162 the server:
163 .Lk scheme://hostname:port/path/to/repository
164 .Pp
165 The following protocol schemes are supported:
166 .Bl -tag -width git+ssh
167 .It git
168 The Git protocol as implemented by the
169 .Xr git-daemon 1
170 server.
171 Use of this protocol is discouraged since it supports neither authentication
172 nor encryption.
173 .It git+ssh
174 The Git protocol wrapped in an authenticated and encrypted
175 .Xr ssh 1
176 tunnel.
177 With this protocol the hostname may contain an embedded username for
178 .Xr ssh 1
179 to use:
180 .Mt user@hostname
181 .It ssh
182 Short alias for git+ssh.
183 .El
184 .Pp
185 Objects in the cloned repository are stored in a pack file which is downloaded
186 from the server.
187 This pack file will then be indexed to facilitate access to the objects stored
188 within.
189 If any objects in the pack file are stored in deltified form, all deltas will
190 be fully resolved in order to compute the ID of such objects.
191 This can take some time.
192 More details about the pack file format are documented in
193 .Xr git-repository 5 .
194 .Pp
195 .Cm got clone
196 creates a remote repository entry in the
197 .Xr got.conf 5
198 and
199 .Pa config
200 files of the cloned repository to store the
201 .Ar repository-url
202 and any
203 .Ar branch
204 or
205 .Ar reference
206 arguments for future use by
207 .Cm got fetch
208 or
209 .Xr git-fetch 1 .
210 .Pp
211 The options for
212 .Cm got clone
213 are as follows:
214 .Bl -tag -width Ds
215 .It Fl a
216 Fetch all branches from the remote repository's
217 .Dq refs/heads/
218 reference namespace and set
219 .Cm fetch_all_branches
220 in the cloned repository's
221 .Xr got.conf 5
222 file for future use by
223 .Cm got fetch .
224 If this option is not specified, a branch resolved via the remote
225 repository's HEAD reference will be fetched.
226 Cannot be used together with the
227 .Fl b
228 option.
229 .It Fl b Ar branch
230 Fetch the specified
231 .Ar branch
232 from the remote repository's
233 .Dq refs/heads/
234 reference namespace.
235 This option may be specified multiple times to build a list of branches
236 to fetch.
237 If the branch corresponding to the remote repository's HEAD reference is not
238 in this list, the cloned repository's HEAD reference will be set to the first
239 branch which was fetched.
240 If this option is not specified, a branch resolved via the remote
241 repository's HEAD reference will be fetched.
242 Cannot be used together with the
243 .Fl a
244 option.
245 .It Fl l
246 List branches and tags available for fetching from the remote repository
247 and exit immediately.
248 Cannot be used together with any of the other options except
249 .Fl q
250 and
251 .Fl v .
252 .It Fl m
253 Create the cloned repository as a mirror of the original repository.
254 This is useful if the cloned repository will not be used to store
255 locally created commits.
256 .Pp
257 The repository's
258 .Xr got.conf 5
259 and
260 .Pa config
261 files will be set up with the
262 .Dq mirror
263 option enabled, such that
264 .Cm got fetch
265 or
266 .Xr git-fetch 1
267 will write incoming changes directly to branches in the
268 .Dq refs/heads/
269 reference namespace, rather than to branches in the
270 .Dq refs/remotes/
271 namespace.
272 This avoids the usual requirement of having to run
273 .Cm got rebase
274 after
275 .Cm got fetch
276 in order to make incoming changes appear on branches in the
277 .Dq refs/heads/
278 namespace.
279 But maintaining custom changes in the cloned repository becomes difficult
280 since such changes will be at risk of being discarded whenever incoming
281 changes are fetched.
282 .It Fl q
283 Suppress progress reporting output.
284 The same option will be passed to
285 .Xr ssh 1
286 if applicable.
287 .It Fl R Ar reference
288 In addition to the branches and tags that will be fetched, fetch an arbitrary
289 .Ar reference
290 from the remote repository's
291 .Dq refs/
292 namespace.
293 This option may be specified multiple times to build a list of additional
294 references to fetch.
295 The specified
296 .Ar reference
297 may either be a path to a specific reference, or a reference namespace
298 which will cause all references in this namespace to be fetched.
299 .Pp
300 Each reference will be mapped into the cloned repository's
301 .Dq refs/remotes/
302 namespace, unless the
303 .Fl m
304 option is used to mirror references directly into the cloned repository's
305 .Dq refs/
306 namespace.
307 .Pp
308 .Cm got clone
309 will refuse to fetch references from the remote repository's
310 .Dq refs/remotes/
311 or
312 .Dq refs/got/
313 namespace.
314 .It Fl v
315 Verbose mode.
316 Causes
317 .Cm got clone
318 to print debugging messages to standard error output.
319 This option will be passed to
320 .Xr ssh 1
321 if applicable.
322 Multiple -v options increase the verbosity.
323 The maximum is 3.
324 .El
325 .Tg fe
326 .It Xo
327 .Cm fetch
328 .Op Fl adlqtvX
329 .Op Fl b Ar branch
330 .Op Fl R Ar reference
331 .Op Fl r Ar repository-path
332 .Op Ar remote-repository
333 .Xc
334 .Dl Pq alias: Cm fe
335 Fetch new changes from a remote repository.
336 If no
337 .Ar remote-repository
338 is specified,
339 .Dq origin
340 will be used.
341 The remote repository's URL is obtained from the corresponding entry in
342 .Xr got.conf 5
343 or Git's
344 .Pa config
345 file of the local repository, as created by
346 .Cm got clone .
347 .Pp
348 By default, any branches configured in
349 .Xr got.conf 5
350 for the
351 .Ar remote-repository
352 will be fetched.
353 If
354 .Cm got fetch
355 is invoked in a work tree then this work tree's current branch will be
356 fetched, too, provided it is present on the server.
357 This default behaviour can be overridden with the
358 .Fl a
359 and
360 .Fl b
361 options.
362 If no branches to fetch can be found in
363 .Xr got.conf 5 ,
364 on the command line, or via a work tree, a branch resolved via the remote
365 repository's HEAD reference will be fetched.
366 .Pp
367 New changes will be stored in a separate pack file downloaded from the server.
368 Optionally, separate pack files stored in the repository can be combined with
369 .Xr git-repack 1 .
370 .Pp
371 By default, branch references in the
372 .Dq refs/remotes/
373 reference namespace will be updated to point at the newly fetched commits.
374 The
375 .Cm got rebase
376 command can then be used to make new changes visible on branches in the
377 .Dq refs/heads/
378 namespace, merging incoming changes with the changes on those branches
379 as necessary.
380 .Pp
381 If the repository was created as a mirror with
382 .Cm got clone -m ,
383 then all branches in the
384 .Dq refs/heads/
385 namespace will be updated directly to match the corresponding branches in
386 the remote repository.
387 If those branches contained local commits, these commits will no longer be
388 reachable via a reference and will therefore be at risk of being discarded
389 by Git's garbage collector or
390 .Cm gotadmin cleanup .
391 Maintaining custom changes in a mirror repository is therefore discouraged.
392 .Pp
393 In any case, references in the
394 .Dq refs/tags/
395 namespace will always be fetched and mapped directly to local references
396 in the same namespace.
397 .Pp
398 The options for
399 .Cm got fetch
400 are as follows:
401 .Bl -tag -width Ds
402 .It Fl a
403 Fetch all branches from the remote repository's
404 .Dq refs/heads/
405 reference namespace.
406 This option can be enabled by default for specific repositories in
407 .Xr got.conf 5 .
408 Cannot be used together with the
409 .Fl b
410 option.
411 .It Fl b Ar branch
412 Fetch the specified
413 .Ar branch
414 from the remote repository's
415 .Dq refs/heads/
416 reference namespace.
417 This option may be specified multiple times to build a list of branches
418 to fetch.
419 Cannot be used together with the
420 .Fl a
421 option.
422 .It Fl d
423 Delete branches and tags from the local repository which are no longer
424 present in the remote repository.
425 Only references are deleted.
426 Any commit, tree, tag, and blob objects belonging to deleted branches or
427 tags remain in the repository and may be removed separately with
428 Git's garbage collector or
429 .Cm gotadmin cleanup .
430 .It Fl l
431 List branches and tags available for fetching from the remote repository
432 and exit immediately.
433 Cannot be used together with any of the other options except
434 .Fl v ,
435 .Fl q ,
436 and
437 .Fl r .
438 .It Fl q
439 Suppress progress reporting output.
440 The same option will be passed to
441 .Xr ssh 1
442 if applicable.
443 .It Fl R Ar reference
444 In addition to the branches and tags that will be fetched, fetch an arbitrary
445 .Ar reference
446 from the remote repository's
447 .Dq refs/
448 namespace.
449 This option may be specified multiple times to build a list of additional
450 references to fetch.
451 The specified
452 .Ar reference
453 may either be a path to a specific reference, or a reference namespace
454 which will cause all references in this namespace to be fetched.
455 .Pp
456 Each reference will be mapped into the local repository's
457 .Dq refs/remotes/
458 namespace, unless the local repository was created as a mirror with
459 .Cm got clone -m
460 in which case references will be mapped directly into the local repository's
461 .Dq refs/
462 namespace.
463 .Pp
464 Once a reference has been fetched, a branch based on it can be created with
465 .Cm got branch
466 if needed.
467 .Pp
468 .Cm got fetch
469 will refuse to fetch references from the remote repository's
470 .Dq refs/remotes/
471 or
472 .Dq refs/got/
473 namespace.
474 .It Fl r Ar repository-path
475 Use the repository at the specified path.
476 If not specified, assume the repository is located at or above the current
477 working directory.
478 If this directory is a
479 .Nm
480 work tree, use the repository path associated with this work tree.
481 .It Fl t
482 Allow existing references in the
483 .Dq refs/tags
484 namespace to be updated if they have changed on the server.
485 If not specified, only new tag references will be created.
486 .It Fl v
487 Verbose mode.
488 Causes
489 .Cm got fetch
490 to print debugging messages to standard error output.
491 The same option will be passed to
492 .Xr ssh 1
493 if applicable.
494 Multiple -v options increase the verbosity.
495 The maximum is 3.
496 .It Fl X
497 Delete all references which correspond to a particular
498 .Ar remote-repository
499 instead of fetching new changes.
500 This can be useful when a remote repository is being removed from
501 .Xr got.conf 5 .
502 .Pp
503 With
504 .Fl X ,
505 the
506 .Ar remote-repository
507 argument is mandatory and no other options except
508 .Fl r ,
509 .Fl v ,
510 and
511 .Fl q
512 are allowed.
513 .Pp
514 Only references are deleted.
515 Any commit, tree, tag, and blob objects fetched from a remote repository
516 will generally be stored in pack files and may be removed separately with
517 .Xr git-repack 1
518 and Git's garbage collector.
519 .El
520 .Tg co
521 .It Xo
522 .Cm checkout
523 .Op Fl Eq
524 .Op Fl b Ar branch
525 .Op Fl c Ar commit
526 .Op Fl p Ar path-prefix
527 .Ar repository-path
528 .Op Ar work-tree-path
529 .Xc
530 .Dl Pq alias: Cm co
531 Copy files from a repository into a new work tree.
532 Show the status of each affected file, using the following status codes:
533 .Bl -column YXZ description
534 .It A Ta new file was added
535 .It E Ta file already exists in work tree's meta-data
536 .El
537 .Pp
538 If the
539 .Ar work tree path
540 is not specified, either use the last component of
541 .Ar repository path ,
542 or if a
543 .Ar path prefix
544 was specified use the last component of
545 .Ar path prefix .
546 .Pp
547 The options for
548 .Cm got checkout
549 are as follows:
550 .Bl -tag -width Ds
551 .It Fl b Ar branch
552 Check out files from a commit on the specified
553 .Ar branch .
554 If this option is not specified, a branch resolved via the repository's HEAD
555 reference will be used.
556 .It Fl c Ar commit
557 Check out files from the specified
558 .Ar commit
559 on the selected branch.
560 The expected argument is a commit ID SHA1 hash or an existing reference
561 or tag name which will be resolved to a commit ID.
562 An abbreviated hash argument will be expanded to a full SHA1 hash
563 automatically, provided the abbreviation is unique.
564 If this option is not specified, the most recent commit on the selected
565 branch will be used.
566 .Pp
567 If the specified
568 .Ar commit
569 is not contained in the selected branch, a different branch which contains
570 this commit must be specified with the
571 .Fl b
572 option.
573 If no such branch is known, a new branch must be created for this
574 commit with
575 .Cm got branch
576 before
577 .Cm got checkout
578 can be used.
579 Checking out work trees with an unknown branch is intentionally not supported.
580 .It Fl E
581 Proceed with the checkout operation even if the directory at
582 .Ar work-tree-path
583 is not empty.
584 Existing files will be left intact.
585 .It Fl p Ar path-prefix
586 Restrict the work tree to a subset of the repository's tree hierarchy.
587 Only files beneath the specified
588 .Ar path-prefix
589 will be checked out.
590 .It Fl q
591 Silence progress output.
592 .El
593 .Tg up
594 .It Xo
595 .Cm update
596 .Op Fl q
597 .Op Fl b Ar branch
598 .Op Fl c Ar commit
599 .Op Ar path ...
600 .Xc
601 .Dl Pq alias: Cm up
602 Update an existing work tree to a different
603 .Ar commit .
604 Change existing files in the work tree as necessary to match file contents
605 of this commit.
606 Preserve any local changes in the work tree and merge them with the
607 incoming changes.
608 .Pp
609 Files which already contain merge conflicts will not be updated to avoid
610 further complications.
611 Such files will be updated when
612 .Cm got update
613 is run again after merge conflicts have been resolved.
614 If the conflicting changes are no longer needed, affected files can be
615 reverted with
616 .Cm got revert
617 before running
618 .Cm got update
619 again.
620 .Pp
621 Show the status of each affected file, using the following status codes:
622 .Bl -column YXZ description
623 .It U Ta file was updated and contained no local changes
624 .It G Ta file was updated and local changes were merged cleanly
625 .It C Ta file was updated and conflicts occurred during merge
626 .It D Ta file was deleted
627 .It A Ta new file was added
628 .It \(a~ Ta versioned file is obstructed by a non-regular file
629 .It ! Ta a missing versioned file was restored
630 .It # Ta file was not updated because it contains merge conflicts
631 .It ? Ta changes destined for an unversioned file were not merged
632 .El
633 .Pp
634 If no
635 .Ar path
636 is specified, update the entire work tree.
637 Otherwise, restrict the update operation to files at or within the
638 specified paths.
639 Each path is required to exist in the update operation's target commit.
640 Files in the work tree outside specified paths will remain unchanged and
641 will retain their previously recorded base commit.
642 Some
643 .Nm
644 commands may refuse to run while the work tree contains files from
645 multiple base commits.
646 The base commit of such a work tree can be made consistent by running
647 .Cm got update
648 across the entire work tree.
649 Specifying a
650 .Ar path
651 is incompatible with the
652 .Fl b
653 option.
654 .Pp
655 .Cm got update
656 cannot update paths with staged changes.
657 If changes have been staged with
658 .Cm got stage ,
659 these changes must first be committed with
660 .Cm got commit
661 or unstaged with
662 .Cm got unstage .
663 .Pp
664 The options for
665 .Cm got update
666 are as follows:
667 .Bl -tag -width Ds
668 .It Fl b Ar branch
669 Switch the work tree's branch reference to the specified
670 .Ar branch
671 before updating the work tree.
672 This option requires that all paths in the work tree are updated.
673 .Pp
674 As usual, any local changes in the work tree will be preserved.
675 This can be useful when switching to a newly created branch in order
676 to commit existing local changes to this branch.
677 .Pp
678 Any local changes must be dealt with separately in order to obtain a
679 work tree with pristine file contents corresponding exactly to the specified
680 .Ar branch .
681 Such changes could first be committed to a different branch with
682 .Cm got commit ,
683 or could be discarded with
684 .Cm got revert .
685 .It Fl c Ar commit
686 Update the work tree to the specified
687 .Ar commit .
688 The expected argument is a commit ID SHA1 hash or an existing reference
689 or tag name which will be resolved to a commit ID.
690 An abbreviated hash argument will be expanded to a full SHA1 hash
691 automatically, provided the abbreviation is unique.
692 If this option is not specified, the most recent commit on the work tree's
693 branch will be used.
694 .It Fl q
695 Silence progress output.
696 .El
697 .Tg st
698 .It Xo
699 .Cm status
700 .Op Fl I
701 .Op Fl S Ar status-codes
702 .Op Fl s Ar status-codes
703 .Op Ar path ...
704 .Xc
705 .Dl Pq alias: Cm st
706 Show the current modification status of files in a work tree,
707 using the following status codes:
708 .Bl -column YXZ description
709 .It M Ta modified file
710 .It A Ta file scheduled for addition in next commit
711 .It D Ta file scheduled for deletion in next commit
712 .It C Ta modified or added file which contains merge conflicts
713 .It ! Ta versioned file was expected on disk but is missing
714 .It \(a~ Ta versioned file is obstructed by a non-regular file
715 .It ? Ta unversioned item not tracked by
716 .Nm
717 .It m Ta modified file modes (executable bit only)
718 .It N Ta non-existent
719 .Ar path
720 specified on the command line
721 .El
722 .Pp
723 If no
724 .Ar path
725 is specified, show modifications in the entire work tree.
726 Otherwise, show modifications at or within the specified paths.
727 .Pp
728 If changes have been staged with
729 .Cm got stage ,
730 staged changes are shown in the second output column, using the following
731 status codes:
732 .Bl -column YXZ description
733 .It M Ta file modification is staged
734 .It A Ta file addition is staged
735 .It D Ta file deletion is staged
736 .El
737 .Pp
738 Changes created on top of staged changes are indicated in the first column:
739 .Bl -column YXZ description
740 .It MM Ta file was modified after earlier changes have been staged
741 .It MA Ta file was modified after having been staged for addition
742 .El
743 .Pp
744 The options for
745 .Cm got status
746 are as follows:
747 .Bl -tag -width Ds
748 .It Fl I
749 Show unversioned files even if they match an ignore pattern.
750 .It Fl S Ar status-codes
751 Suppress the output of files with a modification status matching any of the
752 single-character status codes contained in the
753 .Ar status-codes
754 argument.
755 Any combination of codes from the above list of possible status codes
756 may be specified.
757 For staged files, status codes displayed in either column will be matched.
758 Cannot be used together with the
759 .Fl s
760 option.
761 .It Fl s Ar status-codes
762 Only show files with a modification status matching any of the
763 single-character status codes contained in the
764 .Ar status-codes
765 argument.
766 Any combination of codes from the above list of possible status codes
767 may be specified.
768 For staged files, status codes displayed in either column will be matched.
769 Cannot be used together with the
770 .Fl S
771 option.
772 .El
773 .Pp
774 For compatibility with
775 .Xr cvs 1
776 and
777 .Xr git 1 ,
778 .Cm got status
779 reads
780 .Xr glob 7
781 patterns from
782 .Pa .cvsignore
783 and
784 .Pa .gitignore
785 files in each traversed directory and will not display unversioned files
786 which match these patterns.
787 As an extension to
788 .Xr glob 7
789 matching rules,
790 .Cm got status
791 supports consecutive asterisks,
792 .Dq ** ,
793 which will match an arbitrary amount of directories.
794 Unlike
795 .Xr cvs 1 ,
796 .Cm got status
797 only supports a single ignore pattern per line.
798 Unlike
799 .Xr git 1 ,
800 .Cm got status
801 does not support negated ignore patterns prefixed with
802 .Dq \&! ,
803 and gives no special significance to the location of path component separators,
804 .Dq / ,
805 in a pattern.
806 .It Xo
807 .Cm log
808 .Op Fl bdPpRs
809 .Op Fl C Ar number
810 .Op Fl c Ar commit
811 .Op Fl l Ar N
812 .Op Fl r Ar repository-path
813 .Op Fl S Ar search-pattern
814 .Op Fl x Ar commit
815 .Op Ar path
816 .Xc
817 Display history of a repository.
818 If a
819 .Ar path
820 is specified, show only commits which modified this path.
821 If invoked in a work tree, the
822 .Ar path
823 is interpreted relative to the current working directory,
824 and the work tree's path prefix is implicitly prepended.
825 Otherwise, the path is interpreted relative to the repository root.
826 .Pp
827 The options for
828 .Cm got log
829 are as follows:
830 .Bl -tag -width Ds
831 .It Fl b
832 Display individual commits which were merged into the current branch
833 from other branches.
834 By default,
835 .Cm got log
836 shows the linear history of the current branch only.
837 .It Fl C Ar number
838 Set the number of context lines shown in diffs with
839 .Fl p .
840 By default, 3 lines of context are shown.
841 .It Fl c Ar commit
842 Start traversing history at the specified
843 .Ar commit .
844 The expected argument is a commit ID SHA1 hash or an existing reference
845 or tag name which will be resolved to a commit ID.
846 An abbreviated hash argument will be expanded to a full SHA1 hash
847 automatically, provided the abbreviation is unique.
848 If this option is not specified, default to the work tree's current branch
849 if invoked in a work tree, or to the repository's HEAD reference.
850 .It Fl d
851 Display diffstat of changes introduced in each commit.
852 Cannot be used with the
853 .Fl s
854 option.
855 .It Fl l Ar N
856 Limit history traversal to a given number of commits.
857 If this option is not specified, a default limit value of zero is used,
858 which is treated as an unbounded limit.
859 The
860 .Ev GOT_LOG_DEFAULT_LIMIT
861 environment variable may be set to change this default value.
862 .It Fl P
863 Display the list of file paths changed in each commit, using the following
864 status codes:
865 .Bl -column YXZ description
866 .It M Ta modified file
867 .It D Ta file was deleted
868 .It A Ta new file was added
869 .It m Ta modified file modes (executable bit only)
870 .El
871 .Pp
872 Cannot be used with the
873 .Fl s
874 option.
875 .It Fl p
876 Display the patch of modifications made in each commit.
877 If a
878 .Ar path
879 is specified, only show the patch of modifications at or within this path.
880 Cannot be used with the
881 .Fl s
882 option.
883 .It Fl R
884 Determine a set of commits to display as usual, but display these commits
885 in reverse order.
886 .It Fl r Ar repository-path
887 Use the repository at the specified path.
888 If not specified, assume the repository is located at or above the current
889 working directory.
890 If this directory is a
891 .Nm
892 work tree, use the repository path associated with this work tree.
893 .It Fl S Ar search-pattern
894 If specified, show only commits with a log message, author name,
895 committer name, or ID SHA1 hash matched by the extended regular
896 expression
897 .Ar search-pattern .
898 Lines in committed patches will be matched if
899 .Fl p
900 is specified.
901 File paths changed by a commit will be matched if
902 .Fl P
903 is specified.
904 Regular expression syntax is documented in
905 .Xr re_format 7 .
906 .It Fl s
907 Display a short one-line summary of each commit, instead of the default
908 history format.
909 Cannot be used together with the
910 .Fl p
911 or
912 .Fl P
913 option.
914 .It Fl x Ar commit
915 Stop traversing commit history immediately after the specified
916 .Ar commit
917 has been traversed.
918 This option has no effect if the specified
919 .Ar commit
920 is never traversed.
921 .El
922 .Tg di
923 .It Xo
924 .Cm diff
925 .Op Fl adPsw
926 .Op Fl C Ar number
927 .Op Fl c Ar commit
928 .Op Fl r Ar repository-path
929 .Op Ar object1 Ar object2 | Ar path ...
930 .Xc
931 .Dl Pq alias: Cm di
932 When invoked within a work tree without any arguments, display all
933 local changes in the work tree.
934 If one or more
935 .Ar path
936 arguments are specified, only show changes within the specified paths.
937 .Pp
938 If two arguments are provided, treat each argument as a reference, a tag
939 name, or an object ID SHA1 hash, and display differences between the
940 corresponding objects.
941 Both objects must be of the same type (blobs, trees, or commits).
942 An abbreviated hash argument will be expanded to a full SHA1 hash
943 automatically, provided the abbreviation is unique.
944 If none of these interpretations produce a valid result or if the
945 .Fl P
946 option is used,
947 and if
948 .Cm got diff
949 is running in a work tree, attempt to interpret the two arguments as paths.
950 .Pp
951 The options for
952 .Cm got diff
953 are as follows:
954 .Bl -tag -width Ds
955 .It Fl a
956 Treat file contents as ASCII text even if binary data is detected.
957 .It Fl C Ar number
958 Set the number of context lines shown in the diff.
959 By default, 3 lines of context are shown.
960 .It Fl c Ar commit
961 Show differences between commits in the repository.
962 This option may be used up to two times.
963 When used only once, show differences between the specified
964 .Ar commit
965 and its first parent commit.
966 When used twice, show differences between the two specified commits.
967 .Pp
968 The expected argument is a commit ID SHA1 hash or an existing reference
969 or tag name which will be resolved to a commit ID.
970 An abbreviated hash argument will be expanded to a full SHA1 hash
971 automatically, provided the abbreviation is unique.
972 .Pp
973 If the
974 .Fl c
975 option is used, all non-option arguments will be interpreted as paths.
976 If one or more such
977 .Ar path
978 arguments are provided, only show differences for the specified paths.
979 .Pp
980 Cannot be used together with the
981 .Fl P
982 option.
983 .It Fl d
984 Display diffstat of changes before the actual diff by annotating each file path
985 or blob hash being diffed with the total number of lines added and removed.
986 A summary line will display the total number of changes across all files.
987 .It Fl P
988 Interpret all arguments as paths only.
989 This option can be used to resolve ambiguity in cases where paths
990 look like tag names, reference names, or object IDs.
991 This option is only valid when
992 .Cm got diff
993 is invoked in a work tree.
994 .It Fl r Ar repository-path
995 Use the repository at the specified path.
996 If not specified, assume the repository is located at or above the current
997 working directory.
998 If this directory is a
999 .Nm
1000 work tree, use the repository path associated with this work tree.
1001 .It Fl s
1002 Show changes staged with
1003 .Cm got stage
1004 instead of showing local changes in the work tree.
1005 This option is only valid when
1006 .Cm got diff
1007 is invoked in a work tree.
1008 .It Fl w
1009 Ignore whitespace-only changes.
1010 .El
1011 .Tg bl
1012 .It Xo
1013 .Cm blame
1014 .Op Fl c Ar commit
1015 .Op Fl r Ar repository-path
1016 .Ar path
1017 .Xc
1018 .Dl Pq alias: Cm bl
1019 Display line-by-line history of a file at the specified path.
1020 .Pp
1021 The options for
1022 .Cm got blame
1023 are as follows:
1024 .Bl -tag -width Ds
1025 .It Fl c Ar commit
1026 Start traversing history at the specified
1027 .Ar commit .
1028 The expected argument is a commit ID SHA1 hash or an existing reference
1029 or tag name which will be resolved to a commit ID.
1030 An abbreviated hash argument will be expanded to a full SHA1 hash
1031 automatically, provided the abbreviation is unique.
1032 .It Fl r Ar repository-path
1033 Use the repository at the specified path.
1034 If not specified, assume the repository is located at or above the current
1035 working directory.
1036 If this directory is a
1037 .Nm
1038 work tree, use the repository path associated with this work tree.
1039 .El
1040 .Tg tr
1041 .It Xo
1042 .Cm tree
1043 .Op Fl iR
1044 .Op Fl c Ar commit
1045 .Op Fl r Ar repository-path
1046 .Op Ar path
1047 .Xc
1048 .Dl Pq alias: Cm tr
1049 Display a listing of files and directories at the specified
1050 directory path in the repository.
1051 Entries shown in this listing may carry one of the following trailing
1052 annotations:
1053 .Bl -column YXZ description
1054 .It @ Ta entry is a symbolic link
1055 .It / Ta entry is a directory
1056 .It * Ta entry is an executable file
1057 .It $ Ta entry is a Git submodule
1058 .El
1059 .Pp
1060 Symbolic link entries are also annotated with the target path of the link.
1061 .Pp
1062 If no
1063 .Ar path
1064 is specified, list the repository path corresponding to the current
1065 directory of the work tree, or the root directory of the repository
1066 if there is no work tree.
1067 .Pp
1068 The options for
1069 .Cm got tree
1070 are as follows:
1071 .Bl -tag -width Ds
1072 .It Fl c Ar commit
1073 List files and directories as they appear in the specified
1074 .Ar commit .
1075 The expected argument is a commit ID SHA1 hash or an existing reference
1076 or tag name which will be resolved to a commit ID.
1077 An abbreviated hash argument will be expanded to a full SHA1 hash
1078 automatically, provided the abbreviation is unique.
1079 .It Fl i
1080 Show object IDs of files (blob objects) and directories (tree objects).
1081 .It Fl R
1082 Recurse into sub-directories in the repository.
1083 .It Fl r Ar repository-path
1084 Use the repository at the specified path.
1085 If not specified, assume the repository is located at or above the current
1086 working directory.
1087 If this directory is a
1088 .Nm
1089 work tree, use the repository path associated with this work tree.
1090 .El
1091 .It Xo
1092 .Cm ref
1093 .Op Fl dlt
1094 .Op Fl c Ar object
1095 .Op Fl r Ar repository-path
1096 .Op Fl s Ar reference
1097 .Op Ar name
1098 .Xc
1099 Manage references in a repository.
1100 .Pp
1101 References may be listed, created, deleted, and changed.
1102 When creating, deleting, or changing a reference the specified
1103 .Ar name
1104 must be an absolute reference name, i.e. it must begin with
1105 .Dq refs/ .
1106 .Pp
1107 The options for
1108 .Cm got ref
1109 are as follows:
1110 .Bl -tag -width Ds
1111 .It Fl c Ar object
1112 Create a reference or change an existing reference.
1113 The reference with the specified
1114 .Ar name
1115 will point at the specified
1116 .Ar object .
1117 The expected
1118 .Ar object
1119 argument is a ID SHA1 hash or an existing reference or tag name which will
1120 be resolved to the ID of a corresponding commit, tree, tag, or blob object.
1121 Cannot be used together with any other options except
1122 .Fl r .
1123 .It Fl d
1124 Delete the reference with the specified
1125 .Ar name
1126 from the repository.
1127 Any commit, tree, tag, and blob objects belonging to deleted references
1128 remain in the repository and may be removed separately with
1129 Git's garbage collector or
1130 .Cm gotadmin cleanup .
1131 Cannot be used together with any other options except
1132 .Fl r .
1133 .It Fl l
1134 List references in the repository.
1135 If no
1136 .Ar name
1137 is specified, list all existing references in the repository.
1139 .Ar name
1140 is a reference namespace, list all references in this namespace.
1141 Otherwise, show only the reference with the given
1142 .Ar name .
1143 Cannot be used together with any other options except
1144 .Fl r
1145 and
1146 .Fl t .
1147 .It Fl r Ar repository-path
1148 Use the repository at the specified path.
1149 If not specified, assume the repository is located at or above the current
1150 working directory.
1151 If this directory is a
1152 .Nm
1153 work tree, use the repository path associated with this work tree.
1154 .It Fl s Ar reference
1155 Create a symbolic reference, or change an existing symbolic reference.
1156 The symbolic reference with the specified
1157 .Ar name
1158 will point at the specified
1159 .Ar reference
1160 which must already exist in the repository.
1161 Care should be taken not to create loops between references when
1162 this option is used.
1163 Cannot be used together with any other options except
1164 .Fl r .
1165 .It Fl t
1166 Sort listed references by modification time (most recently modified first)
1167 instead of sorting by lexicographical order.
1168 Use of this option requires the
1169 .Fl l
1170 option to be used as well.
1171 .El
1172 .Tg br
1173 .It Xo
1174 .Cm branch
1175 .Op Fl lnt
1176 .Op Fl c Ar commit
1177 .Op Fl d Ar name
1178 .Op Fl r Ar repository-path
1179 .Op Ar name
1180 .Xc
1181 .Dl Pq alias: Cm br
1182 Create, list, or delete branches.
1183 .Pp
1184 Local branches are managed via references which live in the
1185 .Dq refs/heads/
1186 reference namespace.
1187 The
1188 .Cm got branch
1189 command creates references in this namespace only.
1190 .Pp
1191 When deleting branches, the specified
1192 .Ar name
1193 is searched in the
1194 .Dq refs/heads
1195 reference namespace first.
1196 If no corresponding branch is found, the
1197 .Dq refs/remotes
1198 namespace will be searched next.
1199 .Pp
1200 If invoked in a work tree without any arguments, print the name of the
1201 work tree's current branch.
1202 .Pp
1203 If a
1204 .Ar name
1205 argument is passed, attempt to create a branch reference with the given name.
1206 By default the new branch reference will point at the latest commit on the
1207 work tree's current branch if invoked in a work tree, and otherwise to a commit
1208 resolved via the repository's HEAD reference.
1209 .Pp
1210 If invoked in a work tree, once the branch was created successfully
1211 switch the work tree's head reference to the newly created branch and
1212 update files across the entire work tree, just like
1213 .Cm got update -b Ar name
1214 would do.
1215 Show the status of each affected file, using the following status codes:
1216 .Bl -column YXZ description
1217 .It U Ta file was updated and contained no local changes
1218 .It G Ta file was updated and local changes were merged cleanly
1219 .It C Ta file was updated and conflicts occurred during merge
1220 .It D Ta file was deleted
1221 .It A Ta new file was added
1222 .It \(a~ Ta versioned file is obstructed by a non-regular file
1223 .It ! Ta a missing versioned file was restored
1224 .El
1225 .Pp
1226 The options for
1227 .Cm got branch
1228 are as follows:
1229 .Bl -tag -width Ds
1230 .It Fl c Ar commit
1231 Make a newly created branch reference point at the specified
1232 .Ar commit .
1233 The expected
1234 .Ar commit
1235 argument is a commit ID SHA1 hash or an existing reference
1236 or tag name which will be resolved to a commit ID.
1237 .It Fl d Ar name
1238 Delete the branch with the specified
1239 .Ar name
1240 from the
1241 .Dq refs/heads
1243 .Dq refs/remotes
1244 reference namespace.
1245 .Pp
1246 Only the branch reference is deleted.
1247 Any commit, tree, and blob objects belonging to the branch
1248 remain in the repository and may be removed separately with
1249 Git's garbage collector or
1250 .Cm gotadmin cleanup .
1251 .It Fl l
1252 List all existing branches in the repository, including copies of remote
1253 repositories' branches in the
1254 .Dq refs/remotes/
1255 reference namespace.
1256 .Pp
1257 If invoked in a work tree, the work tree's current branch is shown
1258 with one the following annotations:
1259 .Bl -column YXZ description
1260 .It * Ta work tree's base commit matches the branch tip
1261 .It \(a~ Ta work tree's base commit is out-of-date
1262 .El
1263 .It Fl n
1264 Do not switch and update the work tree after creating a new branch.
1265 .It Fl r Ar repository-path
1266 Use the repository at the specified path.
1267 If not specified, assume the repository is located at or above the current
1268 working directory.
1269 If this directory is a
1270 .Nm
1271 work tree, use the repository path associated with this work tree.
1272 .It Fl t
1273 Sort listed branches by modification time (most recently modified first)
1274 instead of sorting by lexicographical order.
1275 Branches in the
1276 .Dq refs/heads/
1277 reference namespace are listed before branches in
1278 .Dq refs/remotes/
1279 regardless.
1280 Use of this option requires the
1281 .Fl l
1282 option to be used as well.
1283 .El
1284 .It Xo
1285 .Cm tag
1286 .Op Fl lVv
1287 .Op Fl c Ar commit
1288 .Op Fl m Ar message
1289 .Op Fl r Ar repository-path
1290 .Op Fl s Ar signer-id
1291 .Ar name
1292 .Xc
1293 Manage tags in a repository.
1294 .Pp
1295 Tags are managed via references which live in the
1296 .Dq refs/tags/
1297 reference namespace.
1298 The
1299 .Cm got tag
1300 command operates on references in this namespace only.
1301 References in this namespace point at tag objects which contain a pointer
1302 to another object, a tag message, as well as author and timestamp information.
1303 .Pp
1304 Attempt to create a tag with the given
1305 .Ar name ,
1306 and make this tag point at the given
1307 .Ar commit .
1308 If no commit is specified, default to the latest commit on the work tree's
1309 current branch if invoked in a work tree, and to a commit resolved via
1310 the repository's HEAD reference otherwise.
1311 .Pp
1312 The options for
1313 .Cm got tag
1314 are as follows:
1315 .Bl -tag -width Ds
1316 .It Fl c Ar commit
1317 Make the newly created tag reference point at the specified
1318 .Ar commit .
1319 The expected
1320 .Ar commit
1321 argument is a commit ID SHA1 hash or an existing reference or tag name which
1322 will be resolved to a commit ID.
1323 An abbreviated hash argument will be expanded to a full SHA1 hash
1324 automatically, provided the abbreviation is unique.
1325 .It Fl l
1326 List all existing tags in the repository instead of creating a new tag.
1327 If a
1328 .Ar name
1329 argument is passed, show only the tag with the given
1330 .Ar name .
1331 .It Fl m Ar message
1332 Use the specified tag message when creating the new tag.
1333 Without the
1334 .Fl m
1335 option,
1336 .Cm got tag
1337 opens a temporary file in an editor where a tag message can be written.
1338 .It Fl r Ar repository-path
1339 Use the repository at the specified path.
1340 If not specified, assume the repository is located at or above the current
1341 working directory.
1342 If this directory is a
1343 .Nm
1344 work tree, use the repository path associated with this work tree.
1345 .It Fl s Ar signer-id
1346 While creating a new tag, sign this tag with the identity given in
1347 .Ar signer-id .
1348 .Pp
1349 For SSH-based signatures,
1350 .Ar signer-id
1351 is the path to a file which may refer to either a private SSH key,
1352 or a public SSH key with the private half available via
1353 .Xr ssh-agent 1 .
1354 .Cm got tag
1355 will sign the tag object by invoking
1356 .Xr ssh-keygen 1
1357 with the
1358 .Fl Y Cm sign
1359 command, using the signature namespace
1360 .Dq git
1361 for compatibility with
1362 .Xr git 1 .
1363 .It Fl V
1364 Verify tag object signatures.
1365 If a
1366 .Ar name
1367 is specified, show and verify the tag object with the provided name.
1368 Otherwise, list all tag objects and verify signatures where present.
1369 .Pp
1370 .Cm got tag
1371 verifies SSH-based signatures by invoking
1372 .Xr ssh-keygen 1
1373 with the options
1374 .Fl Y Cm verify Fl f Ar allowed_signers .
1375 A path to the
1376 .Ar allowed_signers
1377 file must be set in
1378 .Xr got.conf 5 ,
1379 otherwise verification is impossible.
1380 .It Fl v
1381 Verbose mode.
1382 During SSH signature creation and verification this option will be passed to
1383 .Xr ssh-keygen 1 .
1384 Multiple -v options increase the verbosity.
1385 The maximum is 3.
1386 .El
1387 .Pp
1388 By design, the
1389 .Cm got tag
1390 command will not delete tags or change existing tags.
1391 If a tag must be deleted, the
1392 .Cm got ref
1393 command may be used to delete a tag's reference.
1394 This should only be done if the tag has not already been copied to
1395 another repository.
1396 .It Xo
1397 .Cm add
1398 .Op Fl IR
1399 .Ar path ...
1400 .Xc
1401 Schedule unversioned files in a work tree for addition to the
1402 repository in the next commit.
1403 By default, files which match a
1404 .Cm got status
1405 ignore pattern will not be added.
1406 .Pp
1407 The options for
1408 .Cm got add
1409 are as follows:
1410 .Bl -tag -width Ds
1411 .It Fl I
1412 Add files even if they match a
1413 .Cm got status
1414 ignore pattern.
1415 .It Fl R
1416 Permit recursion into directories.
1417 If this option is not specified,
1418 .Cm got add
1419 will refuse to run if a specified
1420 .Ar path
1421 is a directory.
1422 .El
1423 .Tg rm
1424 .It Xo
1425 .Cm remove
1426 .Op Fl fkR
1427 .Op Fl s Ar status-codes
1428 .Ar path ...
1429 .Xc
1430 .Dl Pq alias: Cm rm
1431 Remove versioned files from a work tree and schedule them for deletion
1432 from the repository in the next commit.
1433 .Pp
1434 The options for
1435 .Cm got remove
1436 are as follows:
1437 .Bl -tag -width Ds
1438 .It Fl f
1439 Perform the operation even if a file contains local modifications,
1440 and do not raise an error if a specified
1441 .Ar path
1442 does not exist on disk.
1443 .It Fl k
1444 Keep affected files on disk.
1445 .It Fl R
1446 Permit recursion into directories.
1447 If this option is not specified,
1448 .Cm got remove
1449 will refuse to run if a specified
1450 .Ar path
1451 is a directory.
1452 .It Fl s Ar status-codes
1453 Only delete files with a modification status matching one of the
1454 single-character status codes contained in the
1455 .Ar status-codes
1456 argument.
1457 The following status codes may be specified:
1458 .Bl -column YXZ description
1459 .It M Ta modified file (this implies the
1460 .Fl f
1461 option)
1462 .It ! Ta versioned file expected on disk but missing
1463 .El
1464 .El
1465 .Tg pa
1466 .It Xo
1467 .Cm patch
1468 .Op Fl nR
1469 .Op Fl c Ar commit
1470 .Op Fl p Ar strip-count
1471 .Op Ar patchfile
1472 .Xc
1473 .Dl Pq alias: Cm pa
1474 Apply changes from
1475 .Ar patchfile
1476 to files in a work tree.
1477 Files added or removed by a patch will be scheduled for addition or removal in
1478 the work tree.
1479 .Pp
1480 The patch must be in the unified diff format as produced by
1481 .Cm got diff ,
1482 .Xr git-diff 1 ,
1483 or by
1484 .Xr diff 1
1485 and
1486 .Xr cvs 1
1487 diff when invoked with their
1488 .Fl u
1489 options.
1490 If no
1491 .Ar patchfile
1492 argument is provided, read unified diff data from standard input instead.
1493 .Pp
1494 If the
1495 .Ar patchfile
1496 contains multiple patches, then attempt to apply each of them in sequence.
1497 .Pp
1498 Show the status of each affected file, using the following status codes:
1499 .Bl -column XYZ description
1500 .It M Ta file was modified
1501 .It G Ta file was merged using a merge-base found in the repository
1502 .It C Ta file was merged and conflicts occurred during merge
1503 .It D Ta file was deleted
1504 .It A Ta file was added
1505 .It # Ta failed to patch the file
1506 .El
1507 .Pp
1508 If a change does not match at its exact line number, attempt to
1509 apply it somewhere else in the file if a good spot can be found.
1510 Otherwise, the patch will fail to apply.
1511 .Pp
1512 .Nm
1513 .Cm patch
1514 will refuse to apply a patch if certain preconditions are not met.
1515 Files to be deleted must already be under version control, and must
1516 not have been scheduled for deletion already.
1517 Files to be added must not yet be under version control and must not
1518 already be present on disk.
1519 Files to be modified must already be under version control and may not
1520 contain conflict markers.
1521 .Pp
1522 If an error occurs, the
1523 .Cm patch
1524 operation will be aborted.
1525 Any changes made to the work tree up to this point will be left behind.
1526 Such changes can be viewed with
1527 .Cm got diff
1528 and can be reverted with
1529 .Cm got revert
1530 if needed.
1531 .Pp
1532 The options for
1533 .Cm got patch
1534 are as follows:
1535 .Bl -tag -width Ds
1536 .It Fl c Ar commit
1537 Attempt to locate files within the specified
1538 .Ar commit
1539 for use as a merge-base for 3-way merges.
1540 Ideally, the specified
1541 .Ar commit
1542 should contain versions of files which the changes contained in the
1543 .Ar patchfile
1544 were based on.
1545 Files will be located by path, relative to the repository root.
1546 If the
1547 .Fl p
1548 option is used then leading path components will be stripped
1549 before paths are looked up in the repository.
1550 .Pp
1551 If the
1552 .Fl c
1553 option is not used then
1554 .Cm got patch
1555 will attempt to locate merge-bases via object IDs found in
1556 .Ar patchfile
1557 meta-data, such as produced by
1558 .Cm got diff
1560 .Xr git-diff 1 .
1561 Use of the
1562 .Fl c
1563 option is only recommended in the absence of such meta-data.
1564 .Pp
1565 In case no merge-base is available for a file, changes will be applied
1566 without doing a 3-way merge.
1567 Changes which do not apply cleanly may then be rejected entirely, rather
1568 than producing merge conflicts in the patched target file.
1569 .It Fl n
1570 Do not make any modifications to the work tree.
1571 This can be used to check whether a patch would apply without issues.
1572 If the
1573 .Ar patchfile
1574 contains diffs that affect the same file multiple times, the results
1575 displayed may be incorrect.
1576 .It Fl p Ar strip-count
1577 Specify the number of leading path components to strip from paths
1578 parsed from
1579 .Ar patchfile .
1580 If the
1581 .Fl p
1582 option is not used,
1583 .Sq a/
1584 and
1585 .Sq b/
1586 path prefixes generated by
1587 .Xr git-diff 1
1588 will be recognized and stripped automatically.
1589 .It Fl R
1590 Reverse the patch before applying it.
1591 .El
1592 .Tg rv
1593 .It Xo
1594 .Cm revert
1595 .Op Fl pR
1596 .Op Fl F Ar response-script
1597 .Ar path ...
1598 .Xc
1599 .Dl Pq alias: Cm rv
1600 Revert any local changes in files at the specified paths in a work tree.
1601 File contents will be overwritten with those contained in the
1602 work tree's base commit.
1603 There is no way to bring discarded changes back after
1604 .Cm got revert !
1605 .Pp
1606 If a file was added with
1607 .Cm got add ,
1608 it will become an unversioned file again.
1609 If a file was deleted with
1610 .Cm got remove ,
1611 it will be restored.
1612 .Pp
1613 The options for
1614 .Cm got revert
1615 are as follows:
1616 .Bl -tag -width Ds
1617 .It Fl F Ar response-script
1618 With the
1619 .Fl p
1620 option, read
1621 .Dq y ,
1622 .Dq n ,
1623 and
1624 .Dq q
1625 responses line-by-line from the specified
1626 .Ar response-script
1627 file instead of prompting interactively.
1628 .It Fl p
1629 Instead of reverting all changes in files, interactively select or reject
1630 changes to revert based on
1631 .Dq y
1632 (revert change),
1633 .Dq n
1634 (keep change), and
1635 .Dq q
1636 (quit reverting this file) responses.
1637 If a file is in modified status, individual patches derived from the
1638 modified file content can be reverted.
1639 Files in added or deleted status may only be reverted in their entirety.
1640 .It Fl R
1641 Permit recursion into directories.
1642 If this option is not specified,
1643 .Cm got revert
1644 will refuse to run if a specified
1645 .Ar path
1646 is a directory.
1647 .El
1648 .Tg ci
1649 .It Xo
1650 .Cm commit
1651 .Op Fl NnS
1652 .Op Fl A Ar author
1653 .Op Fl F Ar path
1654 .Op Fl m Ar message
1655 .Op Ar path ...
1656 .Xc
1657 .Dl Pq alias: Cm ci
1658 Create a new commit in the repository from changes in a work tree
1659 and use this commit as the new base commit for the work tree.
1660 If no
1661 .Ar path
1662 is specified, commit all changes in the work tree.
1663 Otherwise, commit changes at or within the specified paths.
1664 .Pp
1665 If changes have been explicitly staged for commit with
1666 .Cm got stage ,
1667 only commit staged changes and reject any specified paths which
1668 have not been staged.
1669 .Pp
1670 .Cm got commit
1671 opens a temporary file in an editor where a log message can be written
1672 unless the
1673 .Fl m
1674 option is used
1675 or the
1676 .Fl F
1677 and
1678 .Fl N
1679 options are used together.
1680 .Pp
1681 Show the status of each affected file, using the following status codes:
1682 .Bl -column YXZ description
1683 .It M Ta modified file
1684 .It D Ta file was deleted
1685 .It A Ta new file was added
1686 .It m Ta modified file modes (executable bit only)
1687 .El
1688 .Pp
1689 Files which are not part of the new commit will retain their previously
1690 recorded base commit.
1691 Some
1692 .Nm
1693 commands may refuse to run while the work tree contains files from
1694 multiple base commits.
1695 The base commit of such a work tree can be made consistent by running
1696 .Cm got update
1697 across the entire work tree.
1698 .Pp
1699 The
1700 .Cm got commit
1701 command requires the
1702 .Ev GOT_AUTHOR
1703 environment variable to be set,
1704 unless an author has been configured in
1705 .Xr got.conf 5
1706 or Git's
1707 .Dv user.name
1708 and
1709 .Dv user.email
1710 configuration settings can be
1711 obtained from the repository's
1712 .Pa .git/config
1713 file or from Git's global
1714 .Pa ~/.gitconfig
1715 configuration file.
1716 .Pp
1717 The options for
1718 .Cm got commit
1719 are as follows:
1720 .Bl -tag -width Ds
1721 .It Fl A Ar author
1722 Set author information in the newly created commit to
1723 .Ar author .
1724 This is useful when committing changes which were written by someone
1725 else.
1726 The
1727 .Ar author
1728 argument must use the same format as the
1729 .Ev GOT_AUTHOR
1730 environment variable.
1731 .Pp
1732 In addition to storing author information, the newly created commit
1733 object will retain
1734 .Dq committer
1735 information which is obtained, as usual, from the
1736 .Ev GOT_AUTHOR
1737 environment variable, or
1738 .Xr got.conf 5 ,
1739 or Git configuration settings.
1740 .It Fl F Ar path
1741 Use the prepared log message stored in the file found at
1742 .Ar path
1743 when creating the new commit.
1744 .Cm got commit
1745 opens a temporary file in an editor where the prepared log message can be
1746 reviewed and edited further if needed.
1747 Cannot be used together with the
1748 .Fl m
1749 option.
1750 .It Fl m Ar message
1751 Use the specified log message when creating the new commit.
1752 Cannot be used together with the
1753 .Fl F
1754 option.
1755 .It Fl N
1756 This option prevents
1757 .Cm got commit
1758 from opening the commit message in an editor.
1759 It has no effect unless it is used together with the
1760 .Fl F
1761 option and is intended for non-interactive use such as scripting.
1762 .It Fl n
1763 This option prevents
1764 .Cm got commit
1765 from generating a diff of the to-be-committed changes in a temporary file
1766 which can be viewed while editing a commit message.
1767 .It Fl S
1768 Allow the addition of symbolic links which point outside of the path space
1769 that is under version control.
1770 By default,
1771 .Cm got commit
1772 will reject such symbolic links due to safety concerns.
1773 As a precaution,
1774 .Nm
1775 may decide to represent such a symbolic link as a regular file which contains
1776 the link's target path, rather than creating an actual symbolic link which
1777 points outside of the work tree.
1778 Use of this option is discouraged because external mechanisms such as
1779 .Dq make obj
1780 are better suited for managing symbolic links to paths not under
1781 version control.
1782 .El
1783 .Pp
1784 .Cm got commit
1785 will refuse to run if certain preconditions are not met.
1786 If the work tree's current branch is not in the
1787 .Dq refs/heads/
1788 reference namespace, new commits may not be created on this branch.
1789 Local changes may only be committed if they are based on file content
1790 found in the most recent commit on the work tree's branch.
1791 If a path is found to be out of date,
1792 .Cm got update
1793 must be used first in order to merge local changes with changes made
1794 in the repository.
1795 .Tg se
1796 .It Xo
1797 .Cm send
1798 .Op Fl afqTv
1799 .Op Fl b Ar branch
1800 .Op Fl d Ar branch
1801 .Op Fl r Ar repository-path
1802 .Op Fl t Ar tag
1803 .Op Ar remote-repository
1804 .Xc
1805 .Dl Pq alias: Cm se
1806 Send new changes to a remote repository.
1807 If no
1808 .Ar remote-repository
1809 is specified,
1810 .Dq origin
1811 will be used.
1812 The remote repository's URL is obtained from the corresponding entry in
1813 .Xr got.conf 5
1814 or Git's
1815 .Pa config
1816 file of the local repository, as created by
1817 .Cm got clone .
1818 .Pp
1819 All objects corresponding to new changes will be written to a temporary
1820 pack file which is then uploaded to the server.
1821 Upon success, references in the
1822 .Dq refs/remotes/
1823 reference namespace of the local repository will be updated to point at
1824 the commits which have been sent.
1825 .Pp
1826 By default, changes will only be sent if they are based on up-to-date
1827 copies of relevant branches in the remote repository.
1828 If any changes to be sent are based on out-of-date copies or would
1829 otherwise break linear history of existing branches, new changes must
1830 be fetched from the server with
1831 .Cm got fetch
1832 and local branches must be rebased with
1833 .Cm got rebase
1834 before
1835 .Cm got send
1836 can succeed.
1837 The
1838 .Fl f
1839 option can be used to make exceptions to these requirements.
1840 .Pp
1841 The options for
1842 .Cm got send
1843 are as follows:
1844 .Bl -tag -width Ds
1845 .It Fl a
1846 Send all branches from the local repository's
1847 .Dq refs/heads/
1848 reference namespace.
1849 The
1850 .Fl a
1851 option is equivalent to listing all branches with multiple
1852 .Fl b
1853 options.
1854 Cannot be used together with the
1855 .Fl b
1856 option.
1857 .It Fl b Ar branch
1858 Send the specified
1859 .Ar branch
1860 from the local repository's
1861 .Dq refs/heads/
1862 reference namespace.
1863 This option may be specified multiple times to build a list of branches
1864 to send.
1865 If this option is not specified, default to the work tree's current branch
1866 if invoked in a work tree, or to the repository's HEAD reference.
1867 Cannot be used together with the
1868 .Fl a
1869 option.
1870 .It Fl d Ar branch
1871 Delete the specified
1872 .Ar branch
1873 from the remote repository's
1874 .Dq refs/heads/
1875 reference namespace.
1876 This option may be specified multiple times to build a list of branches
1877 to delete.
1878 .Pp
1879 Only references are deleted.
1880 Any commit, tree, tag, and blob objects belonging to deleted branches
1881 may become subject to deletion by Git's garbage collector running on
1882 the server.
1883 .Pp
1884 Requesting deletion of branches results in an error if the server
1885 does not support this feature or disallows the deletion of branches
1886 based on its configuration.
1887 .It Fl f
1888 Attempt to force the server to overwrite existing branches or tags
1889 in the remote repository, even when
1890 .Cm got fetch
1891 and
1892 .Cm got rebase
1893 would usually be required before changes can be sent.
1894 The server may reject forced requests regardless, depending on its
1895 configuration.
1896 .Pp
1897 Any commit, tree, tag, and blob objects belonging to overwritten branches
1898 or tags may become subject to deletion by Git's garbage collector running
1899 on the server.
1900 .Pp
1901 The
1902 .Dq refs/tags
1903 reference namespace is globally shared between all repositories.
1904 Use of the
1905 .Fl f
1906 option to overwrite tags is discouraged because it can lead to
1907 inconsistencies between the tags present in different repositories.
1908 In general, creating a new tag with a different name is recommended
1909 instead of overwriting an existing tag.
1910 .Pp
1911 Use of the
1912 .Fl f
1913 option is particularly discouraged if changes being sent are based
1914 on an out-of-date copy of a branch in the remote repository.
1915 Instead of using the
1916 .Fl f
1917 option, new changes should
1918 be fetched with
1919 .Cm got fetch
1920 and local branches should be rebased with
1921 .Cm got rebase ,
1922 followed by another attempt to send the changes.
1923 .Pp
1924 The
1925 .Fl f
1926 option should only be needed in situations where the remote repository's
1927 copy of a branch or tag is known to be out-of-date and is considered
1928 disposable.
1929 The risks of creating inconsistencies between different repositories
1930 should also be taken into account.
1931 .It Fl q
1932 Suppress progress reporting output.
1933 The same option will be passed to
1934 .Xr ssh 1
1935 if applicable.
1936 .It Fl r Ar repository-path
1937 Use the repository at the specified path.
1938 If not specified, assume the repository is located at or above the current
1939 working directory.
1940 If this directory is a
1941 .Nm
1942 work tree, use the repository path associated with this work tree.
1943 .It Fl T
1944 Attempt to send all tags from the local repository's
1945 .Dq refs/tags/
1946 reference namespace.
1947 The
1948 .Fl T
1949 option is equivalent to listing all tags with multiple
1950 .Fl t
1951 options.
1952 Cannot be used together with the
1953 .Fl t
1954 option.
1955 .It Fl t Ar tag
1956 Send the specified
1957 .Ar tag
1958 from the local repository's
1959 .Dq refs/tags/
1960 reference namespace, in addition to any branches that are being sent.
1961 The
1962 .Fl t
1963 option may be specified multiple times to build a list of tags to send.
1964 No tags will be sent if the
1965 .Fl t
1966 option is not used.
1967 .Pp
1968 Raise an error if the specified
1969 .Ar tag
1970 already exists in the remote repository, unless the
1971 .Fl f
1972 option is used to overwrite the server's copy of the tag.
1973 In general, creating a new tag with a different name is recommended
1974 instead of overwriting an existing tag.
1975 .Pp
1976 Cannot be used together with the
1977 .Fl T
1978 option.
1979 .It Fl v
1980 Verbose mode.
1981 Causes
1982 .Cm got send
1983 to print debugging messages to standard error output.
1984 The same option will be passed to
1985 .Xr ssh 1
1986 if applicable.
1987 Multiple -v options increase the verbosity.
1988 The maximum is 3.
1989 .El
1990 .Tg cy
1991 .It Xo
1992 .Cm cherrypick
1993 .Op Fl lX
1994 .Op Ar commit
1995 .Xc
1996 .Dl Pq alias: Cm cy
1997 Merge changes from a single
1998 .Ar commit
1999 into the work tree.
2000 The specified
2001 .Ar commit
2002 should be on a different branch than the work tree's base commit.
2003 The expected argument is a reference or a commit ID SHA1 hash.
2004 An abbreviated hash argument will be expanded to a full SHA1 hash
2005 automatically, provided the abbreviation is unique.
2006 .Pp
2007 Show the status of each affected file, using the following status codes:
2008 .Bl -column YXZ description
2009 .It G Ta file was merged
2010 .It C Ta file was merged and conflicts occurred during merge
2011 .It ! Ta changes destined for a missing file were not merged
2012 .It D Ta file was deleted
2013 .It d Ta file's deletion was prevented by local modifications
2014 .It A Ta new file was added
2015 .It \(a~ Ta changes destined for a non-regular file were not merged
2016 .It ? Ta changes destined for an unversioned file were not merged
2017 .El
2018 .Pp
2019 The merged changes will appear as local changes in the work tree, which
2020 may be viewed with
2021 .Cm got diff ,
2022 amended manually or with further
2023 .Cm got cherrypick
2024 commands,
2025 committed with
2026 .Cm got commit .
2027 .Pp
2028 If invoked in a work tree where no
2029 .Cm rebase ,
2030 .Cm histedit ,
2032 .Cm merge
2033 operation is taking place,
2034 .Cm got cherrypick
2035 creates a record of commits which have been merged into the work tree.
2036 When a file changed by
2037 .Cm got cherrypick
2038 is committed with
2039 .Cm got commit ,
2040 the log messages of relevant merged commits will then appear in the editor,
2041 where the messages must be further adjusted to convey the reasons for
2042 cherrypicking the changes.
2043 If all the changes in all files touched by a given commit are discarded,
2044 e.g. with
2045 .Cm got revert ,
2046 this commit's log message record will also disappear.
2047 .Pp
2048 .Cm got cherrypick
2049 will refuse to run if certain preconditions are not met.
2050 If the work tree contains multiple base commits, it must first be updated
2051 to a single base commit with
2052 .Cm got update .
2053 If any relevant files already contain merge conflicts, these
2054 conflicts must be resolved first.
2055 .Pp
2056 The options for
2057 .Nm
2058 .Cm cherrypick
2059 are as follows:
2060 .Bl -tag -width Ds
2061 .It Fl l
2062 Display a list of commit log messages recorded by cherrypick operations,
2063 represented by references in the
2064 .Dq refs/got/worktree
2065 reference namespace.
2066 If a
2067 .Ar commit
2068 is specified, only show the log message of the specified commit.
2069 .Pp
2070 If invoked in a work tree, only log messages recorded by cherrypick operations
2071 in the current work tree will be displayed.
2072 Otherwise, all commit log messages will be displayed irrespective of the
2073 work tree in which they were created.
2074 This option cannot be used with
2075 .Fl X .
2076 .It Fl X
2077 Delete log messages created by previous cherrypick operations, represented by
2078 references in the
2079 .Dq refs/got/worktree
2080 reference namespace.
2081 If a
2082 .Ar commit
2083 is specified, only delete the log message of the specified commit.
2084 .Pp
2085 If invoked in a work tree, only log messages recorded by cherrypick operations
2086 in the current work tree will be deleted.
2087 Otherwise, all commit log messages will be deleted irrespective of the
2088 work tree in which they were created.
2089 This option cannot be used with
2090 .Fl l .
2091 .El
2092 .Pp
2093 .Tg bo
2094 .It Xo
2095 .Cm backout
2096 .Op Fl lX
2097 .Op Ar commit
2098 .Xc
2099 .Dl Pq alias: Cm bo
2100 Reverse-merge changes from a single
2101 .Ar commit
2102 into the work tree.
2103 The specified
2104 .Ar commit
2105 should be on the same branch as the work tree's base commit.
2106 The expected argument is a reference or a commit ID SHA1 hash.
2107 An abbreviated hash argument will be expanded to a full SHA1 hash
2108 automatically, provided the abbreviation is unique.
2109 .Pp
2110 Show the status of each affected file, using the following status codes:
2111 .Bl -column YXZ description
2112 .It G Ta file was merged
2113 .It C Ta file was merged and conflicts occurred during merge
2114 .It ! Ta changes destined for a missing file were not merged
2115 .It D Ta file was deleted
2116 .It d Ta file's deletion was prevented by local modifications
2117 .It A Ta new file was added
2118 .It \(a~ Ta changes destined for a non-regular file were not merged
2119 .It ? Ta changes destined for an unversioned file were not merged
2120 .El
2121 .Pp
2122 The reverse-merged changes will appear as local changes in the work tree,
2123 which may be viewed with
2124 .Cm got diff ,
2125 amended manually or with further
2126 .Cm got backout
2127 commands,
2128 committed with
2129 .Cm got commit .
2130 .Pp
2131 If invoked in a work tree where no
2132 .Cm rebase ,
2133 .Cm histedit ,
2135 .Cm merge
2136 operation is taking place,
2137 .Cm got backout
2138 creates a record of commits which have been reverse-merged into the work tree.
2139 When a file changed by
2140 .Cm got backout
2141 is committed with
2142 .Cm got commit ,
2143 the log messages of relevant reverse-merged commits will then appear in
2144 the editor, where the messages must be further adjusted to convey the
2145 reasons for backing out the changes.
2146 If all the changes in all files touched by a given commit are discarded,
2147 e.g. with
2148 .Cm got revert ,
2149 this commit's log message record will also disappear.
2150 .Pp
2151 .Cm got backout
2152 will refuse to run if certain preconditions are not met.
2153 If the work tree contains multiple base commits, it must first be updated
2154 to a single base commit with
2155 .Cm got update .
2156 If any relevant files already contain merge conflicts, these
2157 conflicts must be resolved first.
2158 .Pp
2159 The options for
2160 .Nm
2161 .Cm backout
2162 are as follows:
2163 .Bl -tag -width Ds
2164 .It Fl l
2165 Display a list of commit log messages recorded by backout operations,
2166 represented by references in the
2167 .Dq refs/got/worktree
2168 reference namespace.
2169 If a
2170 .Ar commit
2171 is specified, only show the log message of the specified commit.
2172 .Pp
2173 If invoked in a work tree, only log messages recorded by backout operations
2174 in the current work tree will be displayed.
2175 Otherwise, all commit log messages will be displayed irrespective of the
2176 work tree in which they were created.
2177 This option cannot be used with
2178 .Fl X .
2179 .It Fl X
2180 Delete log messages created by previous backout operations, represented by
2181 references in the
2182 .Dq refs/got/worktree
2183 reference namespace.
2184 If a
2185 .Ar commit
2186 is specified, only delete the log message of the specified commit.
2187 .Pp
2188 If invoked in a work tree, only log messages recorded by backout operations
2189 in the current work tree will be deleted.
2190 Otherwise, all commit log messages will be deleted irrespective of the
2191 work tree in which they were created.
2192 This option cannot be used with
2193 .Fl l .
2194 .El
2195 .Pp
2196 .Tg rb
2197 .It Xo
2198 .Cm rebase
2199 .Op Fl aclX
2200 .Op Ar branch
2201 .Xc
2202 .Dl Pq alias: Cm rb
2203 Rebase commits on the specified
2204 .Ar branch
2205 onto the tip of the current branch of the work tree.
2206 The
2207 .Ar branch
2208 must share common ancestry with the work tree's current branch.
2209 Rebasing begins with the first descendant commit of the youngest
2210 common ancestor commit shared by the specified
2211 .Ar branch
2212 and the work tree's current branch, and stops once the tip commit
2213 of the specified
2214 .Ar branch
2215 has been rebased.
2216 .Pp
2217 When
2218 .Cm got rebase
2219 is used as intended, the specified
2220 .Ar branch
2221 represents a local commit history and may already contain changes
2222 that are not yet visible in any other repositories.
2223 The work tree's current branch, which must be set with
2224 .Cm got update -b
2225 before starting the
2226 .Cm rebase
2227 operation, represents a branch from a remote repository which shares
2228 a common history with the specified
2229 .Ar branch
2230 but has progressed, and perhaps diverged, due to commits added to the
2231 remote repository.
2232 .Pp
2233 Rebased commits are accumulated on a temporary branch which the work tree
2234 will remain switched to throughout the entire rebase operation.
2235 Commits on this branch represent the same changes with the same log
2236 messages as their counterparts on the original
2237 .Ar branch ,
2238 but with different commit IDs.
2239 Once rebasing has completed successfully, the temporary branch becomes
2240 the new version of the specified
2241 .Ar branch
2242 and the work tree is automatically switched to it.
2243 If author information is available via the
2244 .Ev GOT_AUTHOR
2245 environment variable,
2246 .Xr got.conf 5
2247 or Git's
2248 .Dv user.name
2249 and
2250 .Dv user.email
2251 configuration settings, this author information will be used to identify
2252 the
2253 .Dq committer
2254 of rebased commits.
2255 .Pp
2256 Old commits in their pre-rebase state are automatically backed up in the
2257 .Dq refs/got/backup/rebase
2258 reference namespace.
2259 As long as these references are not removed older versions of rebased
2260 commits will remain in the repository and can be viewed with the
2261 .Cm got rebase -l
2262 command.
2263 Removal of these references makes objects which become unreachable via
2264 any reference subject to removal by Git's garbage collector or
2265 .Cm gotadmin cleanup .
2266 .Pp
2267 While rebasing commits, show the status of each affected file,
2268 using the following status codes:
2269 .Bl -column YXZ description
2270 .It G Ta file was merged
2271 .It C Ta file was merged and conflicts occurred during merge
2272 .It ! Ta changes destined for a missing file were not merged
2273 .It D Ta file was deleted
2274 .It d Ta file's deletion was prevented by local modifications
2275 .It A Ta new file was added
2276 .It \(a~ Ta changes destined for a non-regular file were not merged
2277 .It ? Ta changes destined for an unversioned file were not merged
2278 .El
2279 .Pp
2280 If merge conflicts occur, the rebase operation is interrupted and may
2281 be continued once conflicts have been resolved.
2282 If any files with destined changes are found to be missing or unversioned,
2283 or if files could not be deleted due to differences in deleted content,
2284 the rebase operation will be interrupted to prevent potentially incomplete
2285 changes from being committed to the repository without user intervention.
2286 The work tree may be modified as desired and the rebase operation can be
2287 continued once the changes present in the work tree are considered complete.
2288 Alternatively, the rebase operation may be aborted which will leave
2289 .Ar branch
2290 unmodified and the work tree switched back to its original branch.
2291 .Pp
2292 If a merge conflict is resolved in a way which renders the merged
2293 change into a no-op change, the corresponding commit will be elided
2294 when the rebase operation continues.
2295 .Pp
2296 .Cm got rebase
2297 will refuse to run if certain preconditions are not met.
2298 If the
2299 .Ar branch
2300 is not in the
2301 .Dq refs/heads/
2302 reference namespace, the branch may not be rebased.
2303 If the work tree is not yet fully updated to the tip commit of its
2304 branch, then the work tree must first be updated with
2305 .Cm got update .
2306 If changes have been staged with
2307 .Cm got stage ,
2308 these changes must first be committed with
2309 .Cm got commit
2310 or unstaged with
2311 .Cm got unstage .
2312 If the work tree contains local changes, these changes must first be
2313 committed with
2314 .Cm got commit
2315 or reverted with
2316 .Cm got revert .
2317 If the
2318 .Ar branch
2319 contains changes to files outside of the work tree's path prefix,
2320 the work tree cannot be used to rebase this branch.
2321 .Pp
2322 The
2323 .Cm got update ,
2324 .Cm got integrate ,
2325 .Cm got merge ,
2326 .Cm got commit ,
2327 and
2328 .Cm got histedit
2329 commands will refuse to run while a rebase operation is in progress.
2330 Other commands which manipulate the work tree may be used for
2331 conflict resolution purposes.
2332 .Pp
2333 If the specified
2334 .Ar branch
2335 is already based on the work tree's current branch, then no commits
2336 need to be rebased and
2337 .Cm got rebase
2338 will simply switch the work tree to the specified
2339 .Ar branch
2340 and update files in the work tree accordingly.
2341 .Pp
2342 The options for
2343 .Cm got rebase
2344 are as follows:
2345 .Bl -tag -width Ds
2346 .It Fl a
2347 Abort an interrupted rebase operation.
2348 If this option is used, no other command-line arguments are allowed.
2349 .It Fl c
2350 Continue an interrupted rebase operation.
2351 If this option is used, no other command-line arguments are allowed.
2352 .It Fl l
2353 Show a list of past rebase operations, represented by references in the
2354 .Dq refs/got/backup/rebase
2355 reference namespace.
2356 .Pp
2357 Display the author, date, and log message of each backed up commit,
2358 the object ID of the corresponding post-rebase commit, and
2359 the object ID of their common ancestor commit.
2360 Given these object IDs,
2361 the
2362 .Cm got log
2363 command with the
2364 .Fl c
2365 and
2366 .Fl x
2367 options can be used to examine the history of either version of the branch,
2368 and the
2369 .Cm got branch
2370 command with the
2371 .Fl c
2372 option can be used to create a new branch from a pre-rebase state if desired.
2373 .Pp
2374 If a
2375 .Ar branch
2376 is specified, only show commits which at some point in time represented this
2377 branch.
2378 Otherwise, list all backed up commits for any branches.
2379 .Pp
2380 If this option is used,
2381 .Cm got rebase
2382 does not require a work tree.
2383 None of the other options can be used together with
2384 .Fl l .
2385 .It Fl X
2386 Delete backups created by past rebase operations, represented by references
2387 in the
2388 .Dq refs/got/backup/rebase
2389 reference namespace.
2390 .Pp
2391 If a
2392 .Ar branch
2393 is specified, only delete backups which at some point in time represented
2394 this branch.
2395 Otherwise, delete all references found within
2396 .Dq refs/got/backup/rebase .
2397 .Pp
2398 Any commit, tree, tag, and blob objects belonging to deleted backups
2399 remain in the repository and may be removed separately with
2400 Git's garbage collector or
2401 .Cm gotadmin cleanup .
2402 .Pp
2403 If this option is used,
2404 .Cm got rebase
2405 does not require a work tree.
2406 None of the other options can be used together with
2407 .Fl X .
2408 .El
2409 .Tg he
2410 .It Xo
2411 .Cm histedit
2412 .Op Fl acdeflmX
2413 .Op Fl F Ar histedit-script
2414 .Op Ar branch
2415 .Xc
2416 .Dl Pq alias: Cm he
2417 Edit commit history between the work tree's current base commit and
2418 the tip commit of the work tree's current branch.
2419 .Pp
2420 The
2421 .Cm got histedit
2422 command requires the
2423 .Ev GOT_AUTHOR
2424 environment variable to be set,
2425 unless an author has been configured in
2426 .Xr got.conf 5
2427 or Git's
2428 .Dv user.name
2429 and
2430 .Dv user.email
2431 configuration settings can be obtained from the repository's
2432 .Pa .git/config
2433 file or from Git's global
2434 .Pa ~/.gitconfig
2435 configuration file.
2436 .Pp
2437 Before starting a
2438 .Cm histedit
2439 operation, the work tree's current branch must be set with
2440 .Cm got update -b
2441 to the branch which should be edited, unless this branch is already the
2442 current branch of the work tree.
2443 The tip of this branch represents the upper bound (inclusive) of commits
2444 touched by the
2445 .Cm histedit
2446 operation.
2447 .Pp
2448 Furthermore, the work tree's base commit
2449 must be set with
2450 .Cm got update -c
2451 to a point in this branch's commit history where editing should begin.
2452 This commit represents the lower bound (non-inclusive) of commits touched
2453 by the
2454 .Cm histedit
2455 operation.
2456 .Pp
2457 Editing of commit history is controlled via a
2458 .Ar histedit script
2459 which can be written in an editor based on a template, passed on the
2460 command line, or generated with the
2461 .Fl f
2463 .Fl m
2464 options.
2465 .Pp
2466 The format of the histedit script is line-based.
2467 Each line in the script begins with a command name, followed by
2468 whitespace and an argument.
2469 For most commands, the expected argument is a commit ID SHA1 hash.
2470 Any remaining text on the line is ignored.
2471 Lines which begin with the
2472 .Sq #
2473 character are ignored entirely.
2474 .Pp
2475 The available histedit script commands are as follows:
2476 .Bl -column YXZ pick-commit
2477 .It Cm pick Ar commit Ta Use the specified commit as it is.
2478 .It Cm edit Ar commit Ta Use the specified commit but once changes have been
2479 merged into the work tree interrupt the histedit operation for amending.
2480 .It Cm fold Ar commit Ta Combine the specified commit with the next commit
2481 listed further below that will be used.
2482 .It Cm drop Ar commit Ta Remove this commit from the edited history.
2483 .It Cm mesg Oo Ar log-message Oc Ta Create a new log message for the commit of
2484 a preceding
2485 .Cm pick
2487 .Cm edit
2488 command on the previous line of the histedit script.
2489 The optional
2490 .Ar log-message
2491 argument provides a new single-line log message to use.
2492 If the
2493 .Ar log-message
2494 argument is omitted, open an editor where a new log message can be written.
2495 .El
2496 .Pp
2497 Every commit in the history being edited must be mentioned in the script.
2498 Lines may be re-ordered to change the order of commits in the edited history.
2499 No commit may be listed more than once.
2500 .Pp
2501 Edited commits are accumulated on a temporary branch which the work tree
2502 will remain switched to throughout the entire histedit operation.
2503 Once history editing has completed successfully, the temporary branch becomes
2504 the new version of the work tree's branch and the work tree is automatically
2505 switched to it.
2506 .Pp
2507 Old commits in their pre-histedit state are automatically backed up in the
2508 .Dq refs/got/backup/histedit
2509 reference namespace.
2510 As long as these references are not removed older versions of edited
2511 commits will remain in the repository and can be viewed with the
2512 .Cm got histedit -l
2513 command.
2514 Removal of these references makes objects which become unreachable via
2515 any reference subject to removal by Git's garbage collector or
2516 .Cm gotadmin cleanup .
2517 .Pp
2518 While merging commits, show the status of each affected file,
2519 using the following status codes:
2520 .Bl -column YXZ description
2521 .It G Ta file was merged
2522 .It C Ta file was merged and conflicts occurred during merge
2523 .It ! Ta changes destined for a missing file were not merged
2524 .It D Ta file was deleted
2525 .It d Ta file's deletion was prevented by local modifications
2526 .It A Ta new file was added
2527 .It \(a~ Ta changes destined for a non-regular file were not merged
2528 .It ? Ta changes destined for an unversioned file were not merged
2529 .El
2530 .Pp
2531 If merge conflicts occur, the histedit operation is interrupted and may
2532 be continued once conflicts have been resolved.
2533 If any files with destined changes are found to be missing or unversioned,
2534 or if files could not be deleted due to differences in deleted content,
2535 the histedit operation will be interrupted to prevent potentially incomplete
2536 changes from being committed to the repository without user intervention.
2537 The work tree may be modified as desired and the histedit operation can be
2538 continued once the changes present in the work tree are considered complete.
2539 Alternatively, the histedit operation may be aborted which will leave
2540 the work tree switched back to its original branch.
2541 .Pp
2542 If a merge conflict is resolved in a way which renders the merged
2543 change into a no-op change, the corresponding commit will be elided
2544 when the histedit operation continues.
2545 .Pp
2546 .Cm got histedit
2547 will refuse to run if certain preconditions are not met.
2548 If the work tree's current branch is not in the
2549 .Dq refs/heads/
2550 reference namespace, the history of the branch may not be edited.
2551 If the work tree contains multiple base commits, it must first be updated
2552 to a single base commit with
2553 .Cm got update .
2554 If changes have been staged with
2555 .Cm got stage ,
2556 these changes must first be committed with
2557 .Cm got commit
2558 or unstaged with
2559 .Cm got unstage .
2560 If the work tree contains local changes, these changes must first be
2561 committed with
2562 .Cm got commit
2563 or reverted with
2564 .Cm got revert .
2565 If the edited history contains changes to files outside of the work tree's
2566 path prefix, the work tree cannot be used to edit the history of this branch.
2567 .Pp
2568 The
2569 .Cm got update ,
2570 .Cm got rebase ,
2571 .Cm got merge ,
2572 and
2573 .Cm got integrate
2574 commands will refuse to run while a histedit operation is in progress.
2575 Other commands which manipulate the work tree may be used, and the
2576 .Cm got commit
2577 command may be used to commit arbitrary changes to the temporary branch
2578 while the histedit operation is interrupted.
2579 .Pp
2580 The options for
2581 .Cm got histedit
2582 are as follows:
2583 .Bl -tag -width Ds
2584 .It Fl a
2585 Abort an interrupted histedit operation.
2586 If this option is used, no other command-line arguments are allowed.
2587 .It Fl c
2588 Continue an interrupted histedit operation.
2589 If this option is used, no other command-line arguments are allowed.
2590 .It Fl d
2591 Drop all commits.
2592 This option is a quick equivalent to a histedit script which drops all
2593 commits.
2594 The
2595 .Fl d
2596 option can only be used when starting a new histedit operation.
2597 If this option is used, no other command-line arguments are allowed.
2598 .It Fl e
2599 Interrupt the histedit operation for editing after merging each commit.
2600 This option is a quick equivalent to a histedit script which uses the
2601 .Cm edit
2602 command for all commits.
2603 The
2604 .Fl e
2605 option can only be used when starting a new histedit operation.
2606 If this option is used, no other command-line arguments are allowed.
2607 .It Fl F Ar histedit-script
2608 Use the specified
2609 .Ar histedit-script
2610 instead of opening a temporary file in an editor where a histedit script
2611 can be written.
2612 .It Fl f
2613 Fold all commits into a single commit.
2614 This option is a quick equivalent to a histedit script which folds all
2615 commits, combining them all into one commit.
2616 The
2617 .Fl f
2618 option can only be used when starting a new histedit operation.
2619 If this option is used, no other command-line arguments are allowed.
2620 .It Fl l
2621 Show a list of past histedit operations, represented by references in the
2622 .Dq refs/got/backup/histedit
2623 reference namespace.
2624 .Pp
2625 Display the author, date, and log message of each backed up commit,
2626 the object ID of the corresponding post-histedit commit, and
2627 the object ID of their common ancestor commit.
2628 Given these object IDs,
2629 the
2630 .Cm got log
2631 command with the
2632 .Fl c
2633 and
2634 .Fl x
2635 options can be used to examine the history of either version of the branch,
2636 and the
2637 .Cm got branch
2638 command with the
2639 .Fl c
2640 option can be used to create a new branch from a pre-histedit state if desired.
2641 .Pp
2642 If a
2643 .Ar branch
2644 is specified, only show commits which at some point in time represented this
2645 branch.
2646 Otherwise, list all backed up commits for any branches.
2647 .Pp
2648 If this option is used,
2649 .Cm got histedit
2650 does not require a work tree.
2651 None of the other options can be used together with
2652 .Fl l .
2653 .It Fl m
2654 Edit log messages only.
2655 This option is a quick equivalent to a histedit script which edits
2656 only log messages but otherwise leaves every picked commit as-is.
2657 The
2658 .Fl m
2659 option can only be used when starting a new histedit operation.
2660 If this option is used, no other command-line arguments are allowed.
2661 .It Fl X
2662 Delete backups created by past histedit operations, represented by references
2663 in the
2664 .Dq refs/got/backup/histedit
2665 reference namespace.
2666 .Pp
2667 If a
2668 .Ar branch
2669 is specified, only delete backups which at some point in time represented
2670 this branch.
2671 Otherwise, delete all references found within
2672 .Dq refs/got/backup/histedit .
2673 .Pp
2674 Any commit, tree, tag, and blob objects belonging to deleted backups
2675 remain in the repository and may be removed separately with
2676 Git's garbage collector or
2677 .Cm gotadmin cleanup .
2678 .Pp
2679 If this option is used,
2680 .Cm got histedit
2681 does not require a work tree.
2682 None of the other options can be used together with
2683 .Fl X .
2684 .El
2685 .Tg ig
2686 .It Cm integrate Ar branch
2687 .Dl Pq alias: Cm ig
2688 Integrate the specified
2689 .Ar branch
2690 into the work tree's current branch.
2691 Files in the work tree are updated to match the contents on the integrated
2692 .Ar branch ,
2693 and the reference of the work tree's branch is changed to point at the
2694 head commit of the integrated
2695 .Ar branch .
2696 .Pp
2697 Both branches can be considered equivalent after integration since they
2698 will be pointing at the same commit.
2699 Both branches remain available for future work, if desired.
2700 In case the integrated
2701 .Ar branch
2702 is no longer needed it may be deleted with
2703 .Cm got branch -d .
2704 .Pp
2705 Show the status of each affected file, using the following status codes:
2706 .Bl -column YXZ description
2707 .It U Ta file was updated
2708 .It D Ta file was deleted
2709 .It A Ta new file was added
2710 .It \(a~ Ta versioned file is obstructed by a non-regular file
2711 .It ! Ta a missing versioned file was restored
2712 .El
2713 .Pp
2714 .Cm got integrate
2715 will refuse to run if certain preconditions are not met.
2716 Most importantly, the
2717 .Ar branch
2718 must have been rebased onto the work tree's current branch with
2719 .Cm got rebase
2720 before it can be integrated, in order to linearize commit history and
2721 resolve merge conflicts.
2722 If the work tree contains multiple base commits, it must first be updated
2723 to a single base commit with
2724 .Cm got update .
2725 If changes have been staged with
2726 .Cm got stage ,
2727 these changes must first be committed with
2728 .Cm got commit
2729 or unstaged with
2730 .Cm got unstage .
2731 If the work tree contains local changes, these changes must first be
2732 committed with
2733 .Cm got commit
2734 or reverted with
2735 .Cm got revert .
2736 .Tg mg
2737 .It Xo
2738 .Cm merge
2739 .Op Fl acn
2740 .Op Ar branch
2741 .Xc
2742 .Dl Pq alias: Cm mg
2743 Create a merge commit based on the current branch of the work tree and
2744 the specified
2745 .Ar branch .
2746 If a linear project history is desired, then use of
2747 .Cm got rebase
2748 should be preferred over
2749 .Cm got merge .
2750 However, even strictly linear projects may require merge commits in order
2751 to merge in new versions of third-party code stored on vendor branches
2752 created with
2753 .Cm got import .
2754 .Pp
2755 Merge commits are commits based on multiple parent commits.
2756 The tip commit of the work tree's current branch, which must be set with
2757 .Cm got update -b
2758 before starting the
2759 .Cm merge
2760 operation, will be used as the first parent.
2761 The tip commit of the specified
2762 .Ar branch
2763 will be used as the second parent.
2764 .Pp
2765 No ancestral relationship between the two branches is required.
2766 If the two branches have already been merged previously, only new changes
2767 will be merged.
2768 .Pp
2769 It is not possible to create merge commits with more than two parents.
2770 If more than one branch needs to be merged, then multiple merge commits
2771 with two parents each can be created in sequence.
2772 .Pp
2773 While merging changes found on the
2774 .Ar branch
2775 into the work tree, show the status of each affected file,
2776 using the following status codes:
2777 .Bl -column YXZ description
2778 .It G Ta file was merged
2779 .It C Ta file was merged and conflicts occurred during merge
2780 .It ! Ta changes destined for a missing file were not merged
2781 .It D Ta file was deleted
2782 .It d Ta file's deletion was prevented by local modifications
2783 .It A Ta new file was added
2784 .It \(a~ Ta changes destined for a non-regular file were not merged
2785 .It ? Ta changes destined for an unversioned file were not merged
2786 .El
2787 .Pp
2788 If merge conflicts occur, the merge operation is interrupted and conflicts
2789 must be resolved before the merge operation can continue.
2790 If any files with destined changes are found to be missing or unversioned,
2791 or if files could not be deleted due to differences in deleted content,
2792 the merge operation will be interrupted to prevent potentially incomplete
2793 changes from being committed to the repository without user intervention.
2794 The work tree may be modified as desired and the merge can be continued
2795 once the changes present in the work tree are considered complete.
2796 Alternatively, the merge operation may be aborted which will leave
2797 the work tree's current branch unmodified.
2798 .Pp
2799 If a merge conflict is resolved in a way which renders all merged
2800 changes into no-op changes, the merge operation cannot continue
2801 and must be aborted.
2802 .Pp
2803 .Cm got merge
2804 will refuse to run if certain preconditions are not met.
2805 If history of the
2806 .Ar branch
2807 is based on the work tree's current branch, then no merge commit can
2808 be created and
2809 .Cm got integrate
2810 may be used to integrate the
2811 .Ar branch
2812 instead.
2813 If the work tree is not yet fully updated to the tip commit of its
2814 branch, then the work tree must first be updated with
2815 .Cm got update .
2816 If the work tree contains multiple base commits, it must first be updated
2817 to a single base commit with
2818 .Cm got update .
2819 If changes have been staged with
2820 .Cm got stage ,
2821 these changes must first be committed with
2822 .Cm got commit
2823 or unstaged with
2824 .Cm got unstage .
2825 If the work tree contains local changes, these changes must first be
2826 committed with
2827 .Cm got commit
2828 or reverted with
2829 .Cm got revert .
2830 If the
2831 .Ar branch
2832 contains changes to files outside of the work tree's path prefix,
2833 the work tree cannot be used to merge this branch.
2834 .Pp
2835 The
2836 .Cm got update ,
2837 .Cm got commit ,
2838 .Cm got rebase ,
2839 .Cm got histedit ,
2840 .Cm got integrate ,
2841 and
2842 .Cm got stage
2843 commands will refuse to run while a merge operation is in progress.
2844 Other commands which manipulate the work tree may be used for
2845 conflict resolution purposes.
2846 .Pp
2847 The options for
2848 .Cm got merge
2849 are as follows:
2850 .Bl -tag -width Ds
2851 .It Fl a
2852 Abort an interrupted merge operation.
2853 If this option is used, no other command-line arguments are allowed.
2854 .It Fl c
2855 Continue an interrupted merge operation.
2856 If this option is used, no other command-line arguments are allowed.
2857 .It Fl n
2858 Merge changes into the work tree as usual but do not create a merge
2859 commit immediately.
2860 The merge result can be adjusted as desired before a merge commit is
2861 created with
2862 .Cm got merge -c .
2863 Alternatively, the merge may be aborted with
2864 .Cm got merge -a .
2865 .El
2866 .Tg sg
2867 .It Xo
2868 .Cm stage
2869 .Op Fl lpS
2870 .Op Fl F Ar response-script
2871 .Op Ar path ...
2872 .Xc
2873 .Dl Pq alias: Cm sg
2874 Stage local changes for inclusion in the next commit.
2875 If no
2876 .Ar path
2877 is specified, stage all changes in the work tree.
2878 Otherwise, stage changes at or within the specified paths.
2879 Paths may be staged if they are added, modified, or deleted according to
2880 .Cm got status .
2881 .Pp
2882 Show the status of each affected file, using the following status codes:
2883 .Bl -column YXZ description
2884 .It A Ta file addition has been staged
2885 .It M Ta file modification has been staged
2886 .It D Ta file deletion has been staged
2887 .El
2888 .Pp
2889 Staged file contents are saved in newly created blob objects in the repository.
2890 These blobs will be referred to by tree objects once staged changes have been
2891 committed.
2892 .Pp
2893 Staged changes affect the behaviour of
2894 .Cm got commit ,
2895 .Cm got status ,
2896 and
2897 .Cm got diff .
2898 While paths with staged changes exist, the
2899 .Cm got commit
2900 command will refuse to commit any paths which do not have staged changes.
2901 Local changes created on top of staged changes can only be committed if
2902 the path is staged again, or if the staged changes are committed first.
2903 The
2904 .Cm got status
2905 command will show both local changes and staged changes.
2906 The
2907 .Cm got diff
2908 command is able to display local changes relative to staged changes,
2909 and to display staged changes relative to the repository.
2910 The
2911 .Cm got revert
2912 command cannot revert staged changes but may be used to revert
2913 local changes created on top of staged changes.
2914 .Pp
2915 The options for
2916 .Cm got stage
2917 are as follows:
2918 .Bl -tag -width Ds
2919 .It Fl F Ar response-script
2920 With the
2921 .Fl p
2922 option, read
2923 .Dq y ,
2924 .Dq n ,
2925 and
2926 .Dq q
2927 responses line-by-line from the specified
2928 .Ar response-script
2929 file instead of prompting interactively.
2930 .It Fl l
2931 Instead of staging new changes, list paths which are already staged,
2932 along with the IDs of staged blob objects and stage status codes.
2933 If paths were provided on the command line, show the staged paths
2934 among the specified paths.
2935 Otherwise, show all staged paths.
2936 .It Fl p
2937 Instead of staging the entire content of a changed file, interactively
2938 select or reject changes for staging based on
2939 .Dq y
2940 (stage change),
2941 .Dq n
2942 (reject change), and
2943 .Dq q
2944 (quit staging this file) responses.
2945 If a file is in modified status, individual patches derived from the
2946 modified file content can be staged.
2947 Files in added or deleted status may only be staged or rejected in
2948 their entirety.
2949 .It Fl S
2950 Allow staging of symbolic links which point outside of the path space
2951 that is under version control.
2952 By default,
2953 .Cm got stage
2954 will reject such symbolic links due to safety concerns.
2955 As a precaution,
2956 .Nm
2957 may decide to represent such a symbolic link as a regular file which contains
2958 the link's target path, rather than creating an actual symbolic link which
2959 points outside of the work tree.
2960 Use of this option is discouraged because external mechanisms such as
2961 .Dq make obj
2962 are better suited for managing symbolic links to paths not under
2963 version control.
2964 .El
2965 .Pp
2966 .Cm got stage
2967 will refuse to run if certain preconditions are not met.
2968 If a file contains merge conflicts, these conflicts must be resolved first.
2969 If a file is found to be out of date relative to the head commit on the
2970 work tree's current branch, the file must be updated with
2971 .Cm got update
2972 before it can be staged (however, this does not prevent the file from
2973 becoming out-of-date at some point after having been staged).
2974 .Pp
2975 The
2976 .Cm got update ,
2977 .Cm got rebase ,
2978 and
2979 .Cm got histedit
2980 commands will refuse to run while staged changes exist.
2981 If staged changes cannot be committed because a staged path
2982 is out of date, the path must be unstaged with
2983 .Cm got unstage
2984 before it can be updated with
2985 .Cm got update ,
2986 and may then be staged again if necessary.
2987 .Tg ug
2988 .It Xo
2989 .Cm unstage
2990 .Op Fl p
2991 .Op Fl F Ar response-script
2992 .Op Ar path ...
2993 .Xc
2994 .Dl Pq alias: Cm ug
2995 Merge staged changes back into the work tree and put affected paths
2996 back into non-staged status.
2997 If no
2998 .Ar path
2999 is specified, unstage all staged changes across the entire work tree.
3000 Otherwise, unstage changes at or within the specified paths.
3001 .Pp
3002 Show the status of each affected file, using the following status codes:
3003 .Bl -column YXZ description
3004 .It G Ta file was unstaged
3005 .It C Ta file was unstaged and conflicts occurred during merge
3006 .It ! Ta changes destined for a missing file were not merged
3007 .It D Ta file was staged as deleted and still is deleted
3008 .It d Ta file's deletion was prevented by local modifications
3009 .It \(a~ Ta changes destined for a non-regular file were not merged
3010 .El
3011 .Pp
3012 The options for
3013 .Cm got unstage
3014 are as follows:
3015 .Bl -tag -width Ds
3016 .It Fl F Ar response-script
3017 With the
3018 .Fl p
3019 option, read
3020 .Dq y ,
3021 .Dq n ,
3022 and
3023 .Dq q
3024 responses line-by-line from the specified
3025 .Ar response-script
3026 file instead of prompting interactively.
3027 .It Fl p
3028 Instead of unstaging the entire content of a changed file, interactively
3029 select or reject changes for unstaging based on
3030 .Dq y
3031 (unstage change),
3032 .Dq n
3033 (keep change staged), and
3034 .Dq q
3035 (quit unstaging this file) responses.
3036 If a file is staged in modified status, individual patches derived from the
3037 staged file content can be unstaged.
3038 Files staged in added or deleted status may only be unstaged in their entirety.
3039 .El
3040 .It Xo
3041 .Cm cat
3042 .Op Fl P
3043 .Op Fl c Ar commit
3044 .Op Fl r Ar repository-path
3045 .Ar arg ...
3046 .Xc
3047 Parse and print contents of objects to standard output in a line-based
3048 text format.
3049 Content of commit, tree, and tag objects is printed in a way similar
3050 to the actual content stored in such objects.
3051 Blob object contents are printed as they would appear in files on disk.
3052 .Pp
3053 Attempt to interpret each argument as a reference, a tag name, or
3054 an object ID SHA1 hash.
3055 References will be resolved to an object ID.
3056 Tag names will resolved to a tag object.
3057 An abbreviated hash argument will be expanded to a full SHA1 hash
3058 automatically, provided the abbreviation is unique.
3059 .Pp
3060 If none of the above interpretations produce a valid result, or if the
3061 .Fl P
3062 option is used, attempt to interpret the argument as a path which will
3063 be resolved to the ID of an object found at this path in the repository.
3064 .Pp
3065 The options for
3066 .Cm got cat
3067 are as follows:
3068 .Bl -tag -width Ds
3069 .It Fl c Ar commit
3070 Look up paths in the specified
3071 .Ar commit .
3072 If this option is not used, paths are looked up in the commit resolved
3073 via the repository's HEAD reference.
3074 The expected argument is a commit ID SHA1 hash or an existing reference
3075 or tag name which will be resolved to a commit ID.
3076 An abbreviated hash argument will be expanded to a full SHA1 hash
3077 automatically, provided the abbreviation is unique.
3078 .It Fl P
3079 Interpret all arguments as paths only.
3080 This option can be used to resolve ambiguity in cases where paths
3081 look like tag names, reference names, or object IDs.
3082 .It Fl r Ar repository-path
3083 Use the repository at the specified path.
3084 If not specified, assume the repository is located at or above the current
3085 working directory.
3086 If this directory is a
3087 .Nm
3088 work tree, use the repository path associated with this work tree.
3089 .El
3090 .It Cm info Op Ar path ...
3091 Display meta-data stored in a work tree.
3092 See
3093 .Xr got-worktree 5
3094 for details.
3095 .Pp
3096 The work tree to use is resolved implicitly by walking upwards from the
3097 current working directory.
3098 .Pp
3099 If one or more
3100 .Ar path
3101 arguments are specified, show additional per-file information for tracked
3102 files located at or within these paths.
3103 If a
3104 .Ar path
3105 argument corresponds to the work tree's root directory, display information
3106 for all tracked files.
3107 .El
3108 .Sh ENVIRONMENT
3109 .Bl -tag -width GOT_IGNORE_GITCONFIG
3110 .It Ev GOT_AUTHOR
3111 The author's name and email address, such as
3112 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
3113 Used by the
3114 .Cm got commit ,
3115 .Cm got import ,
3116 .Cm got rebase ,
3117 and
3118 .Cm got histedit
3119 commands.
3120 Because
3121 .Xr git 1
3122 may fail to parse commits without an email address in author data,
3123 .Nm
3124 attempts to reject
3125 .Ev GOT_AUTHOR
3126 environment variables with a missing email address.
3127 .Pp
3128 .Ev GOT_AUTHOR will be overridden by configuration settings in
3129 .Xr got.conf 5
3130 or by Git's
3131 .Dv user.name
3132 and
3133 .Dv user.email
3134 configuration settings in the repository's
3135 .Pa .git/config
3136 file.
3137 The
3138 .Dv user.name
3139 and
3140 .Dv user.email
3141 configuration settings contained in Git's global
3142 .Pa ~/.gitconfig
3143 configuration file will only be used if neither
3144 .Xr got.conf 5
3145 nor the
3146 .Ev GOT_AUTHOR
3147 environment variable provide author information.
3148 .It Ev GOT_IGNORE_GITCONFIG
3149 If this variable is set then any remote repository definitions or author
3150 information found in Git configuration files will be ignored.
3151 .It Ev GOT_LOG_DEFAULT_LIMIT
3152 The default limit on the number of commits traversed by
3153 .Cm got log .
3154 If set to zero, the limit is unbounded.
3155 This variable will be silently ignored if it is set to a non-numeric value.
3156 .It Ev VISUAL , EDITOR
3157 The editor spawned by
3158 .Cm got commit ,
3159 .Cm got histedit ,
3160 .Cm got import ,
3162 .Cm got tag .
3163 If not set, the
3164 .Xr ed 1
3165 text editor will be spawned in order to give
3166 .Xr ed 1
3167 the attention it deserves.
3168 .El
3169 .Sh FILES
3170 .Bl -tag -width packed-refs -compact
3171 .It Pa got.conf
3172 Repository-wide configuration settings for
3173 .Nm .
3174 If present, a
3175 .Xr got.conf 5
3176 configuration file located in the root directory of a Git repository
3177 supersedes any relevant settings in Git's
3178 .Pa config
3179 file.
3180 .Pp
3181 .It Pa .got/got.conf
3182 Worktree-specific configuration settings for
3183 .Nm .
3184 If present, a
3185 .Xr got.conf 5
3186 configuration file in the
3187 .Pa .got
3188 meta-data directory of a work tree supersedes any relevant settings in
3189 the repository's
3190 .Xr got.conf 5
3191 configuration file and Git's
3192 .Pa config
3193 file.
3194 .El
3195 .Sh EXIT STATUS
3196 .Ex -std got
3197 .Sh EXAMPLES
3198 Enable tab-completion of
3199 .Nm
3200 command names in
3201 .Xr ksh 1 :
3202 .Pp
3203 .Dl $ set -A complete_got_1 -- $(got -h 2>&1 | sed -n s/commands://p)
3204 .Pp
3205 Clone an existing Git repository for use with
3206 .Nm .
3207 .Pp
3208 .Dl $ cd /var/git/
3209 .Dl $ got clone ssh://git@github.com/openbsd/src.git
3210 .Pp
3211 Use of HTTP URLs currently requires
3212 .Xr git 1 :
3213 .Pp
3214 .Dl $ cd /var/git/
3215 .Dl $ git clone --bare https://github.com/openbsd/src.git
3216 .Pp
3217 Alternatively, for quick and dirty local testing of
3218 .Nm
3219 a new Git repository could be created and populated with files,
3220 e.g. from a temporary CVS checkout located at
3221 .Pa /tmp/src :
3222 .Pp
3223 .Dl $ gotadmin init /var/git/src.git
3224 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
3225 .Pp
3226 Check out a work tree from the Git repository to /usr/src:
3227 .Pp
3228 .Dl $ got checkout /var/git/src.git /usr/src
3229 .Pp
3230 View local changes in a work tree directory:
3231 .Pp
3232 .Dl $ got diff | less
3233 .Pp
3234 In a work tree, display files in a potentially problematic state:
3235 .Pp
3236 .Dl $ got status -s 'C!~?'
3237 .Pp
3238 Interactively revert selected local changes in a work tree directory:
3239 .Pp
3240 .Dl $ got revert -p -R\ .
3241 .Pp
3242 In a work tree or a git repository directory, list all branch references:
3243 .Pp
3244 .Dl $ got branch -l
3245 .Pp
3246 As above, but list the most recently modified branches only:
3247 .Pp
3248 .Dl $ got branch -lt | head
3249 .Pp
3250 In a work tree or a git repository directory, create a new branch called
3251 .Dq unified-buffer-cache
3252 which is forked off the
3253 .Dq master
3254 branch:
3255 .Pp
3256 .Dl $ got branch -c master unified-buffer-cache
3257 .Pp
3258 Switch an existing work tree to the branch
3259 .Dq unified-buffer-cache .
3260 Local changes in the work tree will be preserved and merged if necessary:
3261 .Pp
3262 .Dl $ got update -b unified-buffer-cache
3263 .Pp
3264 Create a new commit from local changes in a work tree directory.
3265 This new commit will become the head commit of the work tree's current branch:
3266 .Pp
3267 .Dl $ got commit
3268 .Pp
3269 In a work tree or a git repository directory, view changes committed in
3270 the 3 most recent commits to the work tree's branch, or the branch resolved
3271 via the repository's HEAD reference, respectively:
3272 .Pp
3273 .Dl $ got log -p -l 3
3274 .Pp
3275 As above, but display changes in the order in which
3276 .Xr patch 1
3277 could apply them in sequence:
3278 .Pp
3279 .Dl $ got log -p -l 3 -R
3280 .Pp
3281 In a work tree or a git repository directory, log the history of a subdirectory:
3282 .Pp
3283 .Dl $ got log sys/uvm
3284 .Pp
3285 While operating inside a work tree, paths are specified relative to the current
3286 working directory, so this command will log the subdirectory
3287 .Pa sys/uvm :
3288 .Pp
3289 .Dl $ cd sys/uvm && got log\ .
3290 .Pp
3291 And this command has the same effect:
3292 .Pp
3293 .Dl $ cd sys/dev/usb && got log ../../uvm
3294 .Pp
3295 And this command displays work tree meta-data about all tracked files:
3296 .Pp
3297 .Dl $ cd /usr/src
3298 .Dl $ got info\ . | less
3299 .Pp
3300 Add new files and remove obsolete files in a work tree directory:
3301 .Pp
3302 .Dl $ got add sys/uvm/uvm_ubc.c
3303 .Dl $ got remove sys/uvm/uvm_vnode.c
3304 .Pp
3305 Create a new commit from local changes in a work tree directory
3306 with a pre-defined log message.
3307 .Pp
3308 .Dl $ got commit -m 'unify the buffer cache'
3309 .Pp
3310 Alternatively, create a new commit from local changes in a work tree
3311 directory with a log message that has been prepared in the file
3312 .Pa /tmp/msg :
3313 .Pp
3314 .Dl $ got commit -F /tmp/msg
3315 .Pp
3316 Update any work tree checked out from the
3317 .Dq unified-buffer-cache
3318 branch to the latest commit on this branch:
3319 .Pp
3320 .Dl $ got update
3321 .Pp
3322 Roll file content on the unified-buffer-cache branch back by one commit,
3323 and then fetch the rolled-back change into the work tree as a local change
3324 to be amended and perhaps committed again:
3325 .Pp
3326 .Dl $ got backout unified-buffer-cache
3327 .Dl $ got commit -m 'roll back previous'
3328 .Dl $ # now back out the previous backout :-)
3329 .Dl $ got backout unified-buffer-cache
3330 .Pp
3331 Fetch new changes on the remote repository's
3332 .Dq master
3333 branch, making them visible on the local repository's
3334 .Dq origin/master
3335 branch:
3336 .Pp
3337 .Dl $ cd /usr/src
3338 .Dl $ got fetch
3339 .Pp
3340 In a repository created with a HTTP URL and
3341 .Cm git clone --bare
3342 the
3343 .Xr git-fetch 1
3344 command must be used instead:
3345 .Pp
3346 .Dl $ cd /var/git/src.git
3347 .Dl $ git fetch origin master:refs/remotes/origin/master
3348 .Pp
3349 Rebase the local
3350 .Dq master
3351 branch to merge the new changes that are now visible on the
3352 .Dq origin/master
3353 branch:
3354 .Pp
3355 .Dl $ cd /usr/src
3356 .Dl $ got update -b origin/master
3357 .Dl $ got rebase master
3358 .Pp
3359 Rebase the
3360 .Dq unified-buffer-cache
3361 branch on top of the new head commit of the
3362 .Dq master
3363 branch.
3364 .Pp
3365 .Dl $ got update -b master
3366 .Dl $ got rebase unified-buffer-cache
3367 .Pp
3368 Create a patch from all changes on the unified-buffer-cache branch.
3369 The patch can be mailed out for review and applied to
3370 .Ox Ns 's
3371 CVS tree:
3372 .Pp
3373 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
3374 .Pp
3375 Edit the entire commit history of the
3376 .Dq unified-buffer-cache
3377 branch:
3378 .Pp
3379 .Dl $ got update -b unified-buffer-cache
3380 .Dl $ got update -c master
3381 .Dl $ got histedit
3382 .Pp
3383 Before working against existing branches in a repository cloned with
3384 .Cm git clone --bare
3385 instead of
3386 .Cm got clone ,
3387 a Git
3388 .Dq refspec
3389 must be configured to map all references in the remote repository
3390 into the
3391 .Dq refs/remotes
3392 namespace of the local repository.
3393 This can be achieved by setting Git's
3394 .Pa remote.origin.fetch
3395 configuration variable to the value
3396 .Dq +refs/heads/*:refs/remotes/origin/*
3397 with the
3398 .Cm git config
3399 command:
3400 .Pp
3401 .Dl $ cd /var/git/repo
3402 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
3403 .Pp
3404 Additionally, the
3405 .Dq mirror
3406 option must be disabled:
3407 .Pp
3408 .Dl $ cd /var/git/repo
3409 .Dl $ git config remote.origin.mirror false
3410 .Pp
3411 Alternatively, the following
3412 .Xr git-fetch 1
3413 configuration item can be added manually to the Git repository's
3414 .Pa config
3415 file:
3416 .Pp
3417 .Dl [remote \&"origin\&"]
3418 .Dl url = ...
3419 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
3420 .Dl mirror = false
3421 .Pp
3422 This configuration leaves the local repository's
3423 .Dq refs/heads
3424 namespace free for use by local branches checked out with
3425 .Cm got checkout
3426 and, if needed, created with
3427 .Cm got branch .
3428 Branches in the
3429 .Dq refs/remotes/origin
3430 namespace can now be updated with incoming changes from the remote
3431 repository with
3432 .Cm got fetch
3434 .Xr git-fetch 1
3435 without extra command line arguments.
3436 Newly fetched changes can be examined with
3437 .Cm got log .
3438 .Pp
3439 Display changes on the remote repository's version of the
3440 .Dq master
3441 branch, as of the last time
3442 .Cm got fetch
3443 was run:
3444 .Pp
3445 .Dl $ got log -c origin/master | less
3446 .Pp
3447 As shown here, most commands accept abbreviated reference names such as
3448 .Dq origin/master
3449 instead of
3450 .Dq refs/remotes/origin/master .
3451 The latter is only needed in case of ambiguity.
3452 .Pp
3453 .Cm got rebase
3454 must be used to merge changes which are visible on the
3455 .Dq origin/master
3456 branch into the
3457 .Dq master
3458 branch.
3459 This will also merge local changes, if any, with the incoming changes:
3460 .Pp
3461 .Dl $ got update -b origin/master
3462 .Dl $ got rebase master
3463 .Pp
3464 In order to make changes committed to the
3465 .Dq unified-buffer-cache
3466 visible on the
3467 .Dq master
3468 branch, the
3469 .Dq unified-buffer-cache
3470 branch must first be rebased onto the
3471 .Dq master
3472 branch:
3473 .Pp
3474 .Dl $ got update -b master
3475 .Dl $ got rebase unified-buffer-cache
3476 .Pp
3477 Changes on the
3478 .Dq unified-buffer-cache
3479 branch can now be made visible on the
3480 .Dq master
3481 branch with
3482 .Cm got integrate .
3483 Because the rebase operation switched the work tree to the
3484 .Dq unified-buffer-cache
3485 branch, the work tree must be switched back to the
3486 .Dq master
3487 branch first:
3488 .Pp
3489 .Dl $ got update -b master
3490 .Dl $ got integrate unified-buffer-cache
3491 .Pp
3492 On the
3493 .Dq master
3494 branch, log messages for local changes can now be amended with
3495 .Dq OK
3496 by other developers and any other important new information:
3497 .Pp
3498 .Dl $ got update -c origin/master
3499 .Dl $ got histedit -m
3500 .Pp
3501 If the remote repository offers write access, local changes on the
3502 .Dq master
3503 branch can be sent to the remote repository with
3504 .Cm got send .
3505 Usually,
3506 .Cm got send
3507 can be run without further arguments.
3508 The arguments shown here match defaults, provided the work tree's
3509 current branch is the
3510 .Dq master
3511 branch:
3512 .Pp
3513 .Dl $ got send -b master origin
3514 .Pp
3515 If the remote repository requires the HTTPS protocol, the
3516 .Xr git-push 1
3517 command must be used instead:
3518 .Pp
3519 .Dl $ cd /var/git/src.git
3520 .Dl $ git push origin master
3521 .Pp
3522 When making contributions to projects which use the
3523 .Dq pull request
3524 workflow, SSH protocol repository access needs to be set up first.
3525 Once an account has been created on a Git hosting site it should
3526 be possible to upload a public SSH key for repository access
3527 authentication.
3528 .Pp
3529 The
3530 .Dq pull request
3531 workflow will usually involve two remote repositories.
3532 In the real-life example below, the
3533 .Dq origin
3534 repository was forked from the
3535 .Dq upstream
3536 repository by using the Git hosting site's web interface.
3537 The
3538 .Xr got.conf 5
3539 file in the local repository describes both remote repositories:
3540 .Bd -literal -offset indent
3541 # Jelmers's repository, which accepts pull requests
3542 remote "upstream" {
3543 server git@github.com
3544 protocol ssh
3545 repository "/jelmer/dulwich"
3546 branch { "master" }
3549 # Stefan's fork, used as the default remote repository
3550 remote "origin" {
3551 server git@github.com
3552 protocol ssh
3553 repository "/stspdotname/dulwich"
3554 branch { "master" }
3556 .Ed
3557 .Pp
3558 With this configuration, Stefan can create commits on
3559 .Dq refs/heads/master
3560 and send them to the
3561 .Dq origin
3562 repository by running:
3563 .Pp
3564 .Dl $ got send -b master origin
3565 .Pp
3566 The changes can now be proposed to Jelmer by opening a pull request
3567 via the Git hosting site's web interface.
3568 If Jelmer requests further changes to be made, additional commits
3569 can be created on the
3570 .Dq master
3571 branch and be added to the pull request by running
3572 .Cd got send
3573 again.
3574 .Pp
3575 If Jelmer prefers additional commits to be
3576 .Dq squashed
3577 then the following commands can be used to achieve this:
3578 .Pp
3579 .Dl $ got update -b master
3580 .Dl $ got update -c origin/master
3581 .Dl $ got histedit -f
3582 .Dl $ got send -f -b master origin
3583 .Pp
3584 Once Jelmer has accepted the pull request, Stefan can fetch the
3585 merged changes, and possibly several other new changes, by running:
3586 .Pp
3587 .Dl $ got fetch upstream
3588 .Pp
3589 The merged changes will now be visible under the reference
3590 .Dq refs/remotes/upstream/master .
3591 The local
3592 .Dq master
3593 branch can now be rebased on top of the latest changes
3594 from upstream:
3595 .Pp
3596 .Dl $ got update -b upstream/master
3597 .Dl $ got rebase master
3598 .Pp
3599 As a final step, the forked repository's copy of the master branch needs
3600 to be kept in sync by sending the new changes there:
3601 .Pp
3602 .Dl $ got send -f -b master origin
3603 .Pp
3604 If multiple pull requests need to be managed in parallel, a separate branch
3605 must be created for each pull request with
3606 .Cm got branch .
3607 Each such branch can then be used as above, in place of
3608 .Dq refs/heads/master .
3609 Changes for any accepted pull requests will still appear under
3610 .Dq refs/remotes/upstream/master,
3611 regardless of which branch was used in the forked repository to
3612 create a pull request.
3613 .Sh SEE ALSO
3614 .Xr gotadmin 1 ,
3615 .Xr tog 1 ,
3616 .Xr git-repository 5 ,
3617 .Xr got-worktree 5 ,
3618 .Xr got.conf 5 ,
3619 .Xr gotwebd 8
3620 .Sh AUTHORS
3621 .An Anthony J. Bentley Aq Mt bentley@openbsd.org
3622 .An Christian Weisgerber Aq Mt naddy@openbsd.org
3623 .An Hiltjo Posthuma Aq Mt hiltjo@codemadness.org
3624 .An Josh Rickmar Aq Mt jrick@zettaport.com
3625 .An Joshua Stein Aq Mt jcs@openbsd.org
3626 .An Klemens Nanni Aq Mt kn@openbsd.org
3627 .An Martin Pieuchot Aq Mt mpi@openbsd.org
3628 .An Neels Hofmeyr Aq Mt neels@hofmeyr.de
3629 .An Omar Polo Aq Mt op@openbsd.org
3630 .An Ori Bernstein Aq Mt ori@openbsd.org
3631 .An Sebastien Marie Aq Mt semarie@openbsd.org
3632 .An Stefan Sperling Aq Mt stsp@openbsd.org
3633 .An Steven McDonald Aq Mt steven@steven-mcdonald.id.au
3634 .An Theo Buehler Aq Mt tb@openbsd.org
3635 .An Thomas Adam Aq Mt thomas@xteddy.org
3636 .An Tracey Emery Aq Mt tracey@traceyemery.net
3637 .An Yang Zhong Aq Mt yzhong@freebsdfoundation.org
3638 .Pp
3639 Parts of
3640 .Nm ,
3641 .Xr tog 1 ,
3642 and
3643 .Xr gotwebd 8
3644 were derived from code under copyright by:
3645 .Pp
3646 .An Caldera International
3647 .An Daniel Hartmeier
3648 .An Esben Norby
3649 .An Henning Brauer
3650 .An HÃ¥kan Olsson
3651 .An Ingo Schwarze
3652 .An Jean-Francois Brousseau
3653 .An Joris Vink
3654 .An Jyri J. Virkki
3655 .An Larry Wall
3656 .An Markus Friedl
3657 .An Niall O'Higgins
3658 .An Niklas Hallqvist
3659 .An Ray Lai
3660 .An Ryan McBride
3661 .An Theo de Raadt
3662 .An Todd C. Miller
3663 .An Xavier Santolaria
3664 .Pp
3665 .Nm
3666 contains code contributed to the public domain by
3667 .An Austin Appleby .
3668 .Sh CAVEATS
3669 .Nm
3670 is a work-in-progress and some features remain to be implemented.
3671 .Pp
3672 At present, the user has to fall back on
3673 .Xr git 1
3674 to perform some tasks.
3675 In particular:
3676 .Bl -bullet
3677 .It
3678 Reading from remote repositories over HTTP or HTTPS protocols requires
3679 .Xr git-clone 1
3680 and
3681 .Xr git-fetch 1 .
3682 .It
3683 Writing to remote repositories over HTTP or HTTPS protocols requires
3684 .Xr git-push 1 .
3685 .It
3686 The creation of merge commits with more than two parent commits requires
3687 .Xr git-merge 1 .
3688 .It
3689 In situations where files or directories were moved around
3690 .Cm got
3691 will not automatically merge changes to new locations and
3692 .Xr git 1
3693 will usually produce better results.
3694 .El