Blob


1 .\"
2 .\" Copyright (c) 2017 Martin Pieuchot
3 .\" Copyright (c) 2018, 2019, 2020 Stefan Sperling
4 .\"
5 .\" Permission to use, copy, modify, and distribute this software for any
6 .\" purpose with or without fee is hereby granted, provided that the above
7 .\" copyright notice and this permission notice appear in all copies.
8 .\"
9 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 .\"
17 .Dd $Mdocdate$
18 .Dt GOT 1
19 .Os
20 .Sh NAME
21 .Nm got
22 .Nd Game of Trees
23 .Sh SYNOPSIS
24 .Nm
25 .Ar command
26 .Op Fl h
27 .Op Ar arg ...
28 .Sh DESCRIPTION
29 .Nm
30 is a version control system which stores the history of tracked files
31 in a Git repository, as used by the Git version control system.
32 This repository format is described in
33 .Xr git-repository 5 .
34 .Pp
35 .Nm
36 is a
37 .Dq distributed
38 version control system because every copy of a repository is writeable.
39 Modifications made to files can be synchronized between repositories
40 at any time.
41 .Pp
42 Files managed by
43 .Nm
44 must be checked out from the repository for modification.
45 Checked out files are stored in a
46 .Em work tree
47 which can be placed at an arbitrary directory in the filesystem hierarchy.
48 The on-disk format of this work tree is described in
49 .Xr got-worktree 5 .
50 .Pp
51 .Nm
52 provides global and command-specific options.
53 Global options must precede the command name, and are as follows:
54 .Bl -tag -width tenletters
55 .It Fl h
56 Display usage information and exit immediately.
57 .It Fl V, -version
58 Display program version and exit immediately.
59 .El
60 .Pp
61 The commands for
62 .Nm
63 are as follows:
64 .Bl -tag -width checkout
65 .It Cm init Ar repository-path
66 Create a new empty repository at the specified
67 .Ar repository-path .
68 .Pp
69 After
70 .Cm got init ,
71 the
72 .Cm got import
73 command must be used to populate the empty repository before
74 .Cm got checkout
75 can be used.
76 .It Cm in
77 Short alias for
78 .Cm init .
79 .It Cm import Oo Fl b Ar branch Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl I Ar pattern Oc Ar directory
80 Create an initial commit in a repository from the file hierarchy
81 within the specified
82 .Ar directory .
83 The created commit will not have any parent commits, i.e. it will be a
84 root commit.
85 Also create a new reference which provides a branch name for the newly
86 created commit.
87 Show the path of each imported file to indicate progress.
88 .Pp
89 The
90 .Cm got import
91 command requires the
92 .Ev GOT_AUTHOR
93 environment variable to be set,
94 unless Git's
95 .Dv user.name
96 and
97 .Dv user.email
98 configuration settings can be obtained from the repository's
99 .Pa .git/config
100 file or from Git's global
101 .Pa ~/.gitconfig
102 configuration file.
103 .Pp
104 The options for
105 .Cm got import
106 are as follows:
107 .Bl -tag -width Ds
108 .It Fl b Ar branch
109 Create the specified
110 .Ar branch
111 instead of creating the default branch
112 .Dq main .
113 Use of this option is required if the
114 .Dq main
115 branch already exists.
116 .It Fl m Ar message
117 Use the specified log message when creating the new commit.
118 Without the
119 .Fl m
120 option,
121 .Cm got import
122 opens a temporary file in an editor where a log message can be written.
123 .It Fl r Ar repository-path
124 Use the repository at the specified path.
125 If not specified, assume the repository is located at or above the current
126 working directory.
127 .It Fl I Ar pattern
128 Ignore files or directories with a name which matches the specified
129 .Ar pattern .
130 This option may be specified multiple times to build a list of ignore patterns.
131 The
132 .Ar pattern
133 follows the globbing rules documented in
134 .Xr glob 7 .
135 .El
136 .It Cm im
137 Short alias for
138 .Cm import .
139 .It Cm checkout Oo Fl E Oc Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Oo Fl p Ar path-prefix Oc Ar repository-path Op Ar work-tree-path
140 Copy files from a repository into a new work tree.
141 Show the status of each affected file, using the following status codes:
142 .Bl -column YXZ description
143 .It A Ta new file was added
144 .It E Ta file already exists in work tree's meta-data
145 .El
146 .Pp
147 If the
148 .Ar work tree path
149 is not specified, either use the last component of
150 .Ar repository path ,
151 or if a
152 .Ar path prefix
153 was specified use the last component of
154 .Ar path prefix .
155 .Pp
156 The options for
157 .Cm got checkout
158 are as follows:
159 .Bl -tag -width Ds
160 .It Fl E
161 Proceed with the checkout operation even if the directory at
162 .Ar work-tree-path
163 is not empty.
164 Existing files will be left intact.
165 .It Fl b Ar branch
166 Check out files from a commit on the specified
167 .Ar branch .
168 If this option is not specified, a branch resolved via the repository's HEAD
169 reference will be used.
170 .It Fl c Ar commit
171 Check out files from the specified
172 .Ar commit
173 on the selected branch.
174 The expected argument is a commit ID SHA1 hash or an existing reference
175 or tag name which will be resolved to a commit ID.
176 An abbreviated hash argument will be expanded to a full SHA1 hash
177 automatically, provided the abbreviation is unique.
178 If this option is not specified, the most recent commit on the selected
179 branch will be used.
180 .It Fl p Ar path-prefix
181 Restrict the work tree to a subset of the repository's tree hierarchy.
182 Only files beneath the specified
183 .Ar path-prefix
184 will be checked out.
185 .El
186 .It Cm co
187 Short alias for
188 .Cm checkout .
189 .It Cm update Oo Fl b Ar branch Oc Oo Fl c Ar commit Oc Op Ar path ...
190 Update an existing work tree to a different commit.
191 Show the status of each affected file, using the following status codes:
192 .Bl -column YXZ description
193 .It U Ta file was updated and contained no local changes
194 .It G Ta file was updated and local changes were merged cleanly
195 .It C Ta file was updated and conflicts occurred during merge
196 .It D Ta file was deleted
197 .It A Ta new file was added
198 .It \(a~ Ta versioned file is obstructed by a non-regular file
199 .It ! Ta a missing versioned file was restored
200 .El
201 .Pp
202 If no
203 .Ar path
204 is specified, update the entire work tree.
205 Otherwise, restrict the update operation to files at or within the
206 specified paths.
207 Each path is required to exist in the update operation's target commit.
208 Files in the work tree outside specified paths will remain unchanged and
209 will retain their previously recorded base commit.
210 Some
211 .Nm
212 commands may refuse to run while the work tree contains files from
213 multiple base commits.
214 The base commit of such a work tree can be made consistent by running
215 .Cm got update
216 across the entire work tree.
217 Specifying a
218 .Ar path
219 is incompatible with the
220 .Fl b
221 option.
222 .Pp
223 .Cm got update
224 cannot update paths with staged changes.
225 If changes have been staged with
226 .Cm got stage ,
227 these changes must first be committed with
228 .Cm got commit
229 or unstaged with
230 .Cm got unstage .
231 .Pp
232 The options for
233 .Cm got update
234 are as follows:
235 .Bl -tag -width Ds
236 .It Fl b Ar branch
237 Switch the work tree's branch reference to the specified
238 .Ar branch
239 before updating the work tree.
240 This option requires that all paths in the work tree are updated.
241 .It Fl c Ar commit
242 Update the work tree to the specified
243 .Ar commit .
244 The expected argument is a commit ID SHA1 hash or an existing reference
245 or tag name which will be resolved to a commit ID.
246 An abbreviated hash argument will be expanded to a full SHA1 hash
247 automatically, provided the abbreviation is unique.
248 If this option is not specified, the most recent commit on the work tree's
249 branch will be used.
250 .El
251 .It Cm up
252 Short alias for
253 .Cm update .
254 .It Cm status Op Ar path ...
255 Show the current modification status of files in a work tree,
256 using the following status codes:
257 .Bl -column YXZ description
258 .It M Ta modified file
259 .It A Ta file scheduled for addition in next commit
260 .It D Ta file scheduled for deletion in next commit
261 .It C Ta modified or added file which contains merge conflicts
262 .It ! Ta versioned file was expected on disk but is missing
263 .It \(a~ Ta versioned file is obstructed by a non-regular file
264 .It ? Ta unversioned item not tracked by
265 .Nm
266 .It m Ta modified file modes (executable bit only)
267 .It N Ta non-existent
268 .Ar path
269 specified on the command line
270 .El
271 .Pp
272 If no
273 .Ar path
274 is specified, show modifications in the entire work tree.
275 Otherwise, show modifications at or within the specified paths.
276 .Pp
277 If changes have been staged with
278 .Cm got stage ,
279 staged changes are shown in the second output column, using the following
280 status codes:
281 .Bl -column YXZ description
282 .It M Ta file modification is staged
283 .It A Ta file addition is staged
284 .It D Ta file deletion is staged
285 .El
286 .Pp
287 Changes created on top of staged changes are indicated in the first column:
288 .Bl -column YXZ description
289 .It MM Ta file was modified after earlier changes have been staged
290 .It MA Ta file was modified after having been staged for addition
291 .El
292 .Pp
293 For compatibility with
294 .Xr cvs 1
295 and
296 .Xr git 1 ,
297 .Cm got status
298 reads
299 .Xr glob 7
300 patterns from
301 .Pa .cvsignore
302 and
303 .Pa .gitignore
304 files in each traversed directory and will not display unversioned files
305 which match these patterns.
306 As an extension to
307 .Xr glob 7
308 matching rules,
309 .Cm got status
310 supports consecutive asterisks,
311 .Dq ** ,
312 which will match an arbitrary amount of directories.
313 Unlike
314 .Xr cvs 1 ,
315 .Cm got status
316 only supports a single ignore pattern per line.
317 Unlike
318 .Xr git 1 ,
319 .Cm got status
320 does not support negated ignore patterns prefixed with
321 .Dq \&! ,
322 and gives no special significance to the location of path component separators,
323 .Dq / ,
324 in a pattern.
325 .It Cm st
326 Short alias for
327 .Cm status .
328 .It Cm log Oo Fl b Oc Oo Fl c Ar commit Oc Oo Fl C Ar number Oc Oo Fl l Ar N Oc Oo Fl p Oc Oo Fl s Ar search-pattern Oc Oo Fl r Ar repository-path Oc Op Ar path
329 Display history of a repository.
330 If a
331 .Ar path
332 is specified, show only commits which modified this path.
333 If invoked in a work tree, the
334 .Ar path
335 is interpreted relative to the current working directory,
336 and the work tree's path prefix is implicitly prepended.
337 Otherwise, the path is interpreted relative to the repository root.
338 .Pp
339 The options for
340 .Cm got log
341 are as follows:
342 .Bl -tag -width Ds
343 .It Fl b
344 Display individual commits which were merged into the current branch
345 from other branches.
346 By default,
347 .Cm got log
348 shows the linear history of the current branch only.
349 .It Fl c Ar commit
350 Start traversing history at the specified
351 .Ar commit .
352 The expected argument is a commit ID SHA1 hash or an existing reference
353 or tag name which will be resolved to a commit ID.
354 An abbreviated hash argument will be expanded to a full SHA1 hash
355 automatically, provided the abbreviation is unique.
356 If this option is not specified, default to the work tree's current branch
357 if invoked in a work tree, or to the repository's HEAD reference.
358 .It Fl C Ar number
359 Set the number of context lines shown in diffs with
360 .Fl p .
361 By default, 3 lines of context are shown.
362 .It Fl l Ar N
363 Limit history traversal to a given number of commits.
364 If this option is not specified, a default limit value of zero is used,
365 which is treated as an unbounded limit.
366 The
367 .Ev GOT_LOG_DEFAULT_LIMIT
368 environment variable may be set to change this default value.
369 .It Fl p
370 Display the patch of modifications made in each commit.
371 If a
372 .Ar path
373 is specified, only show the patch of modifications at or within this path.
374 .It Fl s Ar search-pattern
375 If specified, show only commits with a log message matched by the extended
376 regular expression
377 .Ar search-pattern .
378 Regular expression syntax is documented in
379 .Xr re_format 7 .
380 .It Fl r Ar repository-path
381 Use the repository at the specified path.
382 If not specified, assume the repository is located at or above the current
383 working directory.
384 If this directory is a
385 .Nm
386 work tree, use the repository path associated with this work tree.
387 .El
388 .It Cm diff Oo Fl C Ar number Oc Oo Fl r Ar repository-path Oc Oo Fl s Oc Oo Fl w Oc Op Ar object1 Ar object2 | Ar path
389 When invoked within a work tree with less than two arguments, display
390 uncommitted changes in the work tree.
391 If a
392 .Ar path
393 is specified, only show changes within this path.
394 .Pp
395 If two arguments are provided, treat each argument as a reference, a tag
396 name, or an object ID SHA1 hash, and display differences between the
397 corresponding objects.
398 Both objects must be of the same type (blobs, trees, or commits).
399 An abbreviated hash argument will be expanded to a full SHA1 hash
400 automatically, provided the abbreviation is unique.
401 .Pp
402 The options for
403 .Cm got diff
404 are as follows:
405 .Bl -tag -width Ds
406 .It Fl C Ar number
407 Set the number of context lines shown in the diff.
408 By default, 3 lines of context are shown.
409 .It Fl r Ar repository-path
410 Use the repository at the specified path.
411 If not specified, assume the repository is located at or above the current
412 working directory.
413 If this directory is a
414 .Nm
415 work tree, use the repository path associated with this work tree.
416 .It Fl s
417 Show changes staged with
418 .Cm got stage
419 instead of showing local changes.
420 This option is only valid when
421 .Cm got diff
422 is invoked in a work tree.
423 .It Fl w
424 Ignore whitespace-only changes.
425 .El
426 .It Cm di
427 Short alias for
428 .Cm diff .
429 .It Cm blame Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Ar path
430 Display line-by-line history of a file at the specified path.
431 .Pp
432 The options for
433 .Cm got blame
434 are as follows:
435 .Bl -tag -width Ds
436 .It Fl c Ar commit
437 Start traversing history at the specified
438 .Ar commit .
439 The expected argument is a commit ID SHA1 hash or an existing reference
440 or tag name which will be resolved to a commit ID.
441 An abbreviated hash argument will be expanded to a full SHA1 hash
442 automatically, provided the abbreviation is unique.
443 .It Fl r Ar repository-path
444 Use the repository at the specified path.
445 If not specified, assume the repository is located at or above the current
446 working directory.
447 If this directory is a
448 .Nm
449 work tree, use the repository path associated with this work tree.
450 .El
451 .It Cm bl
452 Short alias for
453 .Cm blame .
454 .It Cm tree Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl i Oc Oo Fl R Oc Op Ar path
455 Display a listing of files and directories at the specified
456 directory path in the repository.
457 Entries shown in this listing may carry one of the following trailing
458 annotations:
459 .Bl -column YXZ description
460 .It @ Ta entry is a symbolic link
461 .It / Ta entry is a directory
462 .It * Ta entry is an executable file
463 .It $ Ta entry is a Git submodule
464 .El
465 .Pp
466 If no
467 .Ar path
468 is specified, list the repository path corresponding to the current
469 directory of the work tree, or the root directory of the repository
470 if there is no work tree.
471 .Pp
472 The options for
473 .Cm got tree
474 are as follows:
475 .Bl -tag -width Ds
476 .It Fl c Ar commit
477 List files and directories as they appear in the specified
478 .Ar commit .
479 The expected argument is a commit ID SHA1 hash or an existing reference
480 or tag name which will be resolved to a commit ID.
481 An abbreviated hash argument will be expanded to a full SHA1 hash
482 automatically, provided the abbreviation is unique.
483 .It Fl r Ar repository-path
484 Use the repository at the specified path.
485 If not specified, assume the repository is located at or above the current
486 working directory.
487 If this directory is a
488 .Nm
489 work tree, use the repository path associated with this work tree.
490 .It Fl i
491 Show object IDs of files (blob objects) and directories (tree objects).
492 .It Fl R
493 Recurse into sub-directories in the repository.
494 .El
495 .It Cm tr
496 Short alias for
497 .Cm tree .
498 .It Cm ref Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Oo Fl s Oc Op Ar name Ar target
499 Manage references in a repository.
500 .Pp
501 If no options are passed, expect two arguments and attempt to create,
502 or update, the reference with the given
503 .Ar name ,
504 and make it point at the given
505 .Ar target .
506 The name must be an absolute reference name, i.e. it must begin with
507 .Dq refs/ .
508 The target may be an object ID SHA1 hash or an existing reference which
509 will be resolved to an object ID.
510 An abbreviated hash argument will be expanded to a full SHA1 hash
511 automatically, provided the abbreviation is unique.
512 .Pp
513 The options for
514 .Cm got ref
515 are as follows:
516 .Bl -tag -width Ds
517 .It Fl r Ar repository-path
518 Use the repository at the specified path.
519 If not specified, assume the repository is located at or above the current
520 working directory.
521 If this directory is a
522 .Nm
523 work tree, use the repository path associated with this work tree.
524 .It Fl l
525 List all existing references in the repository.
526 .It Fl d Ar name
527 Delete the reference with the specified name from the repository.
528 .It Fl s
529 Create a symbolic reference pointing at the specified
530 .Ar target ,
531 which must be an existing reference.
532 Care should be taken not to create loops between references when
533 this option is used.
534 .El
535 .It Cm branch Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Oo Fl d Ar name Oc Oo Fl n Oc Op Ar name
536 Create, list, or delete branches.
537 .Pp
538 Branches are managed via references which live in the
539 .Dq refs/heads/
540 reference namespace.
541 The
542 .Cm got branch
543 command operates on references in this namespace only.
544 .Pp
545 If invoked in a work tree without any arguments, print the name of the
546 work tree's current branch.
547 .Pp
548 If a
549 .Ar name
550 argument is passed, attempt to create a branch reference with the given name.
551 By default the new branch reference will point at the latest commit on the
552 work tree's current branch if invoked in a work tree, and otherwise to a commit
553 resolved via the repository's HEAD reference.
554 .Pp
555 If invoked in a work tree, once the branch was created successfully
556 switch the work tree's head reference to the newly created branch and
557 update files across the entire work tree, just like
558 .Cm got update -b Ar name
559 would do.
560 Show the status of each affected file, using the following status codes:
561 .Bl -column YXZ description
562 .It U Ta file was updated and contained no local changes
563 .It G Ta file was updated and local changes were merged cleanly
564 .It C Ta file was updated and conflicts occurred during merge
565 .It D Ta file was deleted
566 .It A Ta new file was added
567 .It \(a~ Ta versioned file is obstructed by a non-regular file
568 .It ! Ta a missing versioned file was restored
569 .El
570 .Pp
571 The options for
572 .Cm got branch
573 are as follows:
574 .Bl -tag -width Ds
575 .It Fl c Ar commit
576 Make a newly created branch reference point at the specified
577 .Ar commit .
578 The expected
579 .Ar commit
580 argument is a commit ID SHA1 hash or an existing reference
581 or tag name which will be resolved to a commit ID.
582 .It Fl r Ar repository-path
583 Use the repository at the specified path.
584 If not specified, assume the repository is located at or above the current
585 working directory.
586 If this directory is a
587 .Nm
588 work tree, use the repository path associated with this work tree.
589 .It Fl l
590 List all existing branches in the repository.
591 If invoked in a work tree, the work tree's current branch is shown
592 with one the following annotations:
593 .Bl -column YXZ description
594 .It * Ta work tree's base commit matches the branch tip
595 .It \(a~ Ta work tree's base commit is out-of-date
596 .El
597 .It Fl d Ar name
598 Delete the branch with the specified name from the repository.
599 Only the branch reference is deleted.
600 Any commit, tree, and blob objects belonging to the branch
601 remain in the repository and may be removed separately with
602 Git's garbage collector.
603 .It Fl n
604 Do not switch and update the work tree after creating a new branch.
605 .El
606 .It Cm br
607 Short alias for
608 .Cm branch .
609 .It Cm tag Oo Fl c Ar commit Oc Oo Fl m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Ar name
610 Manage tags in a repository.
611 .Pp
612 Tags are managed via references which live in the
613 .Dq refs/tags/
614 reference namespace.
615 The
616 .Cm got tag
617 command operates on references in this namespace only.
618 References in this namespace point at tag objects which contain a pointer
619 to another object, a tag message, as well as author and timestamp information.
620 .Pp
621 Attempt to create a tag with the given
622 .Ar name ,
623 and make this tag point at the given
624 .Ar commit .
625 If no commit is specified, default to the latest commit on the work tree's
626 current branch if invoked in a work tree, and to a commit resolved via
627 the repository's HEAD reference otherwise.
628 .Pp
629 The options for
630 .Cm got tag
631 are as follows:
632 .Bl -tag -width Ds
633 .It Fl c Ar commit
634 Make the newly created tag reference point at the specified
635 .Ar commit .
636 The expected
637 .Ar commit
638 argument is a commit ID SHA1 hash or an existing reference or tag name which
639 will be resolved to a commit ID.
640 An abbreviated hash argument will be expanded to a full SHA1 hash
641 automatically, provided the abbreviation is unique.
642 .It Fl m Ar message
643 Use the specified tag message when creating the new tag.
644 Without the
645 .Fl m
646 option,
647 .Cm got tag
648 opens a temporary file in an editor where a tag message can be written.
649 .It Fl r Ar repository-path
650 Use the repository at the specified path.
651 If not specified, assume the repository is located at or above the current
652 working directory.
653 If this directory is a
654 .Nm
655 work tree, use the repository path associated with this work tree.
656 .It Fl l
657 List all existing tags in the repository instead of creating a new tag.
658 If this option is used, no other command-line arguments are allowed.
659 .El
660 .Pp
661 By design, the
662 .Cm got tag
663 command will not delete tags or change existing tags.
664 If a tag must be deleted, the
665 .Cm got ref
666 command may be used to delete a tag's reference.
667 This should only be done if the tag has not already been copied to
668 another repository.
669 .It Cm add Oo Fl R Oc Oo Fl I Oc Ar path ...
670 Schedule unversioned files in a work tree for addition to the
671 repository in the next commit.
672 .Pp
673 The options for
674 .Cm got add
675 are as follows:
676 .Bl -tag -width Ds
677 .It Fl R
678 Permit recursion into directories.
679 If this option is not specified,
680 .Cm got add
681 will refuse to run if a specified
682 .Ar path
683 is a directory.
684 .It Fl I
685 With -R, add files even if they match a
686 .Cm got status
687 ignore pattern.
688 .El
689 .It Cm remove Oo Fl f Oc Oo Fl k Oc Oo Fl R Oc Ar path ...
690 Remove versioned files from a work tree and schedule them for deletion
691 from the repository in the next commit.
692 .Pp
693 The options for
694 .Cm got remove
695 are as follows:
696 .Bl -tag -width Ds
697 .It Fl f
698 Perform the operation even if a file contains uncommitted modifications.
699 .It Fl k
700 Keep affected files on disk.
701 .It Fl R
702 Permit recursion into directories.
703 If this option is not specified,
704 .Cm got remove
705 will refuse to run if a specified
706 .Ar path
707 is a directory.
708 .El
709 .It Cm rm
710 Short alias for
711 .Cm remove .
712 .It Cm revert Oo Fl p Oc Oo Fl F Ar response-script Oc Oo Fl R Oc Ar path ...
713 Revert any uncommitted changes in files at the specified paths.
714 File contents will be overwritten with those contained in the
715 work tree's base commit.
716 There is no way to bring discarded changes back after
717 .Cm got revert !
718 .Pp
719 If a file was added with
720 .Cm got add
721 it will become an unversioned file again.
722 If a file was deleted with
723 .Cm got remove
724 it will be restored.
725 .Pp
726 The options for
727 .Cm got revert
728 are as follows:
729 .Bl -tag -width Ds
730 .It Fl p
731 Instead of reverting all changes in files, interactively select or reject
732 changes to revert based on
733 .Dq y
734 (revert change),
735 .Dq n
736 (keep change), and
737 .Dq q
738 (quit reverting this file) responses.
739 If a file is in modified status, individual patches derived from the
740 modified file content can be reverted.
741 Files in added or deleted status may only be reverted in their entirety.
742 .It Fl F Ar response-script
743 With the
744 .Fl p
745 option, read
746 .Dq y ,
747 .Dq n ,
748 and
749 .Dq q
750 responses line-by-line from the specified
751 .Ar response-script
752 file instead of prompting interactively.
753 .It Fl R
754 Permit recursion into directories.
755 If this option is not specified,
756 .Cm got revert
757 will refuse to run if a specified
758 .Ar path
759 is a directory.
760 .El
761 .It Cm rv
762 Short alias for
763 .Cm revert .
764 .It Cm commit Oo Fl m Ar message Oc Op Ar path ...
765 Create a new commit in the repository from changes in a work tree
766 and use this commit as the new base commit for the work tree.
767 If no
768 .Ar path
769 is specified, commit all changes in the work tree.
770 Otherwise, commit changes at or within the specified paths.
771 .Pp
772 If changes have been explicitly staged for commit with
773 .Cm got stage ,
774 only commit staged changes and reject any specified paths which
775 have not been staged.
776 .Pp
777 Show the status of each affected file, using the following status codes:
778 .Bl -column YXZ description
779 .It M Ta modified file
780 .It D Ta file was deleted
781 .It A Ta new file was added
782 .It m Ta modified file modes (executable bit only)
783 .El
784 .Pp
785 Files which are not part of the new commit will retain their previously
786 recorded base commit.
787 Some
788 .Nm
789 commands may refuse to run while the work tree contains files from
790 multiple base commits.
791 The base commit of such a work tree can be made consistent by running
792 .Cm got update
793 across the entire work tree.
794 .Pp
795 The
796 .Cm got commit
797 command requires the
798 .Ev GOT_AUTHOR
799 environment variable to be set,
800 unless Git's
801 .Dv user.name
802 and
803 .Dv user.email
804 configuration settings can be
805 obtained from the repository's
806 .Pa .git/config
807 file or from Git's global
808 .Pa ~/.gitconfig
809 configuration file.
810 .Pp
811 The options for
812 .Cm got commit
813 are as follows:
814 .Bl -tag -width Ds
815 .It Fl m Ar message
816 Use the specified log message when creating the new commit.
817 Without the
818 .Fl m
819 option,
820 .Cm got commit
821 opens a temporary file in an editor where a log message can be written.
822 .El
823 .Pp
824 .Cm got commit
825 will refuse to run if certain preconditions are not met.
826 If the work tree's current branch is not in the
827 .Dq refs/heads/
828 reference namespace, new commits may not be created on this branch.
829 Local changes may only be committed if they are based on file content
830 found in the most recent commit on the work tree's branch.
831 If a path is found to be out of date,
832 .Cm got update
833 must be used first in order to merge local changes with changes made
834 in the repository.
835 .It Cm ci
836 Short alias for
837 .Cm commit .
838 .It Cm cherrypick Ar commit
839 Merge changes from a single
840 .Ar commit
841 into the work tree.
842 The specified
843 .Ar commit
844 must be on a different branch than the work tree's base commit.
845 The expected argument is a reference or a commit ID SHA1 hash.
846 An abbreviated hash argument will be expanded to a full SHA1 hash
847 automatically, provided the abbreviation is unique.
848 .Pp
849 Show the status of each affected file, using the following status codes:
850 .Bl -column YXZ description
851 .It G Ta file was merged
852 .It C Ta file was merged and conflicts occurred during merge
853 .It ! Ta changes destined for a missing file were not merged
854 .It D Ta file was deleted
855 .It d Ta file's deletion was obstructed by local modifications
856 .It A Ta new file was added
857 .It \(a~ Ta changes destined for a non-regular file were not merged
858 .El
859 .Pp
860 The merged changes will appear as local changes in the work tree, which
861 may be viewed with
862 .Cm got diff ,
863 amended manually or with further
864 .Cm got cherrypick
865 commands,
866 committed with
867 .Cm got commit ,
868 or discarded again with
869 .Cm got revert .
870 .Pp
871 .Cm got cherrypick
872 will refuse to run if certain preconditions are not met.
873 If the work tree contains multiple base commits it must first be updated
874 to a single base commit with
875 .Cm got update .
876 If the work tree already contains files with merge conflicts, these
877 conflicts must be resolved first.
878 .It Cm cy
879 Short alias for
880 .Cm cherrypick .
881 .It Cm backout Ar commit
882 Reverse-merge changes from a single
883 .Ar commit
884 into the work tree.
885 The specified
886 .Ar commit
887 must be on the same branch as the work tree's base commit.
888 The expected argument is a reference or a commit ID SHA1 hash.
889 An abbreviated hash argument will be expanded to a full SHA1 hash
890 automatically, provided the abbreviation is unique.
891 .Pp
892 Show the status of each affected file, using the following status codes:
893 .Bl -column YXZ description
894 .It G Ta file was merged
895 .It C Ta file was merged and conflicts occurred during merge
896 .It ! Ta changes destined for a missing file were not merged
897 .It D Ta file was deleted
898 .It d Ta file's deletion was obstructed by local modifications
899 .It A Ta new file was added
900 .It \(a~ Ta changes destined for a non-regular file were not merged
901 .El
902 .Pp
903 The reverse-merged changes will appear as local changes in the work tree,
904 which may be viewed with
905 .Cm got diff ,
906 amended manually or with further
907 .Cm got backout
908 commands,
909 committed with
910 .Cm got commit ,
911 or discarded again with
912 .Cm got revert .
913 .Pp
914 .Cm got backout
915 will refuse to run if certain preconditions are not met.
916 If the work tree contains multiple base commits it must first be updated
917 to a single base commit with
918 .Cm got update .
919 If the work tree already contains files with merge conflicts, these
920 conflicts must be resolved first.
921 .It Cm bo
922 Short alias for
923 .Cm backout .
924 .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
925 Rebase commits on the specified
926 .Ar branch
927 onto the tip of the current branch of the work tree.
928 The
929 .Ar branch
930 must share common ancestry with the work tree's current branch.
931 Rebasing begins with the first descendant commit of the youngest
932 common ancestor commit shared by the specified
933 .Ar branch
934 and the work tree's current branch, and stops once the tip commit
935 of the specified
936 .Ar branch
937 has been rebased.
938 .Pp
939 Rebased commits are accumulated on a temporary branch which the work tree
940 will remain switched to throughout the entire rebase operation.
941 Commits on this branch represent the same changes with the same log
942 messages as their counterparts on the original
943 .Ar branch ,
944 but with different commit IDs.
945 Once rebasing has completed successfully, the temporary branch becomes
946 the new version of the specified
947 .Ar branch
948 and the work tree is automatically switched to it.
949 .Pp
950 While rebasing commits, show the status of each affected file,
951 using the following status codes:
952 .Bl -column YXZ description
953 .It G Ta file was merged
954 .It C Ta file was merged and conflicts occurred during merge
955 .It ! Ta changes destined for a missing file were not merged
956 .It D Ta file was deleted
957 .It d Ta file's deletion was obstructed by local modifications
958 .It A Ta new file was added
959 .It \(a~ Ta changes destined for a non-regular file were not merged
960 .El
961 .Pp
962 If merge conflicts occur the rebase operation is interrupted and may
963 be continued once conflicts have been resolved.
964 Alternatively, the rebase operation may be aborted which will leave
965 .Ar branch
966 unmodified and the work tree switched back to its original branch.
967 .Pp
968 If a merge conflict is resolved in a way which renders the merged
969 change into a no-op change, the corresponding commit will be elided
970 when the rebase operation continues.
971 .Pp
972 .Cm got rebase
973 will refuse to run if certain preconditions are not met.
974 If the work tree is not yet fully updated to the tip commit of its
975 branch then the work tree must first be updated with
976 .Cm got update .
977 If changes have been staged with
978 .Cm got stage ,
979 these changes must first be committed with
980 .Cm got commit
981 or unstaged with
982 .Cm got unstage .
983 If the work tree contains local changes, these changes must first be
984 committed with
985 .Cm got commit
986 or reverted with
987 .Cm got revert .
988 If the
989 .Ar branch
990 contains changes to files outside of the work tree's path prefix,
991 the work tree cannot be used to rebase this branch.
992 .Pp
993 The
994 .Cm got update
995 and
996 .Cm got commit
997 commands will refuse to run while a rebase operation is in progress.
998 Other commands which manipulate the work tree may be used for
999 conflict resolution purposes.
1000 .Pp
1001 The options for
1002 .Cm got rebase
1003 are as follows:
1004 .Bl -tag -width Ds
1005 .It Fl a
1006 Abort an interrupted rebase operation.
1007 If this option is used, no other command-line arguments are allowed.
1008 .It Fl c
1009 Continue an interrupted rebase operation.
1010 If this option is used, no other command-line arguments are allowed.
1011 .El
1012 .It Cm rb
1013 Short alias for
1014 .Cm rebase .
1015 .It Cm histedit Oo Fl a Oc Oo Fl c Oc Oo Fl F Ar histedit-script Oc Oo Fl m Oc
1016 Edit commit history between the work tree's current base commit and
1017 the tip commit of the work tree's current branch.
1018 .Pp
1019 Before starting a
1020 .Cm histedit
1021 operation the work tree's current branch must be set with
1022 .Cm got update -b
1023 to the branch which should be edited, unless this branch is already the
1024 current branch of the work tree.
1025 The tip of this branch represents the upper bound (inclusive) of commits
1026 touched by the
1027 .Cm histedit
1028 operation.
1029 .Pp
1030 Furthermore, the work tree's base commit
1031 must be set with
1032 .Cm got update -c
1033 to a point in this branch's commit history where editing should begin.
1034 This commit represents the lower bound (non-inclusive) of commits touched
1035 by the
1036 .Cm histedit
1037 operation.
1038 .Pp
1039 Editing of commit history is controlled via a
1040 .Ar histedit script
1041 which can be written in an editor based on a template, passed on the
1042 command line, or generated with the
1043 .Fl m
1044 option if only log messages need to be edited.
1045 .Pp
1046 The format of the histedit script is line-based.
1047 Each line in the script begins with a command name, followed by
1048 whitespace and an argument.
1049 For most commands, the expected argument is a commit ID SHA1 hash.
1050 Any remaining text on the line is ignored.
1051 Lines which begin with the
1052 .Sq #
1053 character are ignored entirely.
1054 .Pp
1055 The available commands are as follows:
1056 .Bl -column YXZ pick-commit
1057 .It pick Ar commit Ta Use the specified commit as it is.
1058 .It edit Ar commit Ta Use the specified commit but once changes have been
1059 merged into the work tree interrupt the histedit operation for amending.
1060 .It fold Ar commit Ta Combine the specified commit with the next commit
1061 listed further below that will be used.
1062 .It drop Ar commit Ta Remove this commit from the edited history.
1063 .It mesg Ar log-message Ta Use the specified single-line log message for
1064 the commit on the previous line.
1065 If the log message argument is left empty, open an editor where a new
1066 log message can be written.
1067 .El
1068 .Pp
1069 Every commit in the history being edited must be mentioned in the script.
1070 Lines may be re-ordered to change the order of commits in the edited history.
1071 .Pp
1072 Edited commits are accumulated on a temporary branch which the work tree
1073 will remain switched to throughout the entire histedit operation.
1074 Once history editing has completed successfully, the temporary branch becomes
1075 the new version of the work tree's branch and the work tree is automatically
1076 switched to it.
1077 .Pp
1078 While merging commits, show the status of each affected file,
1079 using the following status codes:
1080 .Bl -column YXZ description
1081 .It G Ta file was merged
1082 .It C Ta file was merged and conflicts occurred during merge
1083 .It ! Ta changes destined for a missing file were not merged
1084 .It D Ta file was deleted
1085 .It d Ta file's deletion was obstructed by local modifications
1086 .It A Ta new file was added
1087 .It \(a~ Ta changes destined for a non-regular file were not merged
1088 .El
1089 .Pp
1090 If merge conflicts occur the histedit operation is interrupted and may
1091 be continued once conflicts have been resolved.
1092 Alternatively, the histedit operation may be aborted which will leave
1093 the work tree switched back to its original branch.
1094 .Pp
1095 If a merge conflict is resolved in a way which renders the merged
1096 change into a no-op change, the corresponding commit will be elided
1097 when the histedit operation continues.
1098 .Pp
1099 .Cm got histedit
1100 will refuse to run if certain preconditions are not met.
1101 If the work tree's current branch is not in the
1102 .Dq refs/heads/
1103 reference namespace, the history of the branch may not be edited.
1104 If the work tree contains multiple base commits it must first be updated
1105 to a single base commit with
1106 .Cm got update .
1107 If changes have been staged with
1108 .Cm got stage ,
1109 these changes must first be committed with
1110 .Cm got commit
1111 or unstaged with
1112 .Cm got unstage .
1113 If the work tree contains local changes, these changes must first be
1114 committed with
1115 .Cm got commit
1116 or reverted with
1117 .Cm got revert .
1118 If the edited history contains changes to files outside of the work tree's
1119 path prefix, the work tree cannot be used to edit the history of this branch.
1120 .Pp
1121 The
1122 .Cm got update ,
1123 .Cm got rebase ,
1124 and
1125 .Cm got integrate
1126 commands will refuse to run while a histedit operation is in progress.
1127 Other commands which manipulate the work tree may be used, and the
1128 .Cm got commit
1129 command may be used to commit arbitrary changes to the temporary branch
1130 while the histedit operation is interrupted.
1131 .Pp
1132 The options for
1133 .Cm got histedit
1134 are as follows:
1135 .Bl -tag -width Ds
1136 .It Fl a
1137 Abort an interrupted histedit operation.
1138 If this option is used, no other command-line arguments are allowed.
1139 .It Fl c
1140 Continue an interrupted histedit operation.
1141 If this option is used, no other command-line arguments are allowed.
1142 .It Fl F Ar histedit-script
1143 Use the specified
1144 .Ar histedit-script
1145 instead of opening a temporary file in an editor where a histedit script
1146 can be written.
1147 .It Fl m
1148 Edit log messages only.
1149 This option is a quick equivalent to a histedit script which edits
1150 only log messages but otherwise leaves every picked commit as-is.
1151 The
1152 .Fl m
1153 option can only be used when starting a new histedit operation.
1154 If this option is used, no other command-line arguments are allowed.
1155 .El
1156 .It Cm he
1157 Short alias for
1158 .Cm histedit .
1159 .It Cm integrate Ar branch
1160 Integrate the specified
1161 .Ar branch
1162 into the work tree's current branch.
1163 Files in the work tree are updated to match the contents on the integrated
1164 .Ar branch ,
1165 and the reference of the work tree's branch is changed to point at the
1166 head commit of the integrated
1167 .Ar branch .
1168 .Pp
1169 Both branches can be considered equivalent after integration since they
1170 will be pointing at the same commit.
1171 Both branches remain available for future work, if desired.
1172 In case the integrated
1173 .Ar branch
1174 is no longer needed it may be deleted with
1175 .Cm got branch -d .
1176 .Pp
1177 Show the status of each affected file, using the following status codes:
1178 .Bl -column YXZ description
1179 .It U Ta file was updated
1180 .It D Ta file was deleted
1181 .It A Ta new file was added
1182 .It \(a~ Ta versioned file is obstructed by a non-regular file
1183 .It ! Ta a missing versioned file was restored
1184 .El
1185 .Pp
1186 .Cm got integrate
1187 will refuse to run if certain preconditions are not met.
1188 Most importantly, the
1189 .Ar branch
1190 must have been rebased onto the work tree's current branch with
1191 .Cm got rebase
1192 before it can be integrated, in order to linearize commit history and
1193 resolve merge conflicts.
1194 If the work tree contains multiple base commits it must first be updated
1195 to a single base commit with
1196 .Cm got update .
1197 If changes have been staged with
1198 .Cm got stage ,
1199 these changes must first be committed with
1200 .Cm got commit
1201 or unstaged with
1202 .Cm got unstage .
1203 If the work tree contains local changes, these changes must first be
1204 committed with
1205 .Cm got commit
1206 or reverted with
1207 .Cm got revert .
1208 .It Cm ig
1209 Short alias for
1210 .Cm integrate .
1211 .It Cm stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1212 Stage local changes for inclusion in the next commit.
1213 If no
1214 .Ar path
1215 is specified, stage all changes in the work tree.
1216 Otherwise, stage changes at or within the specified paths.
1217 Paths may be staged if they are added, modified, or deleted according to
1218 .Cm got status .
1219 .Pp
1220 Show the status of each affected file, using the following status codes:
1221 .Bl -column YXZ description
1222 .It A Ta file addition has been staged
1223 .It M Ta file modification has been staged
1224 .It D Ta file deletion has been staged
1225 .El
1226 .Pp
1227 Staged file contents are saved in newly created blob objects in the repository.
1228 These blobs will be referred to by tree objects once staged changes have been
1229 committed.
1230 .Pp
1231 Staged changes affect the behaviour of
1232 .Cm got commit ,
1233 .Cm got status ,
1234 and
1235 .Cm got diff .
1236 While paths with staged changes exist, the
1237 .Cm got commit
1238 command will refuse to commit any paths which do not have staged changes.
1239 Local changes created on top of staged changes can only be committed if
1240 the path is staged again, or if the staged changes are committed first.
1241 The
1242 .Cm got status
1243 command will show both local changes and staged changes.
1244 The
1245 .Cm got diff
1246 command is able to display local changes relative to staged changes,
1247 and to display staged changes relative to the repository.
1248 The
1249 .Cm got revert
1250 command cannot revert staged changes but may be used to revert
1251 local changes created on top of staged changes.
1252 .Pp
1253 The options for
1254 .Cm got stage
1255 are as follows:
1256 .Bl -tag -width Ds
1257 .It Fl l
1258 Instead of staging new changes, list paths which are already staged,
1259 along with the IDs of staged blob objects and stage status codes.
1260 If paths were provided in the command line show the staged paths
1261 among the specified paths.
1262 Otherwise, show all staged paths.
1263 .It Fl p
1264 Instead of staging the entire content of a changed file, interactively
1265 select or reject changes for staging based on
1266 .Dq y
1267 (stage change),
1268 .Dq n
1269 (reject change), and
1270 .Dq q
1271 (quit staging this file) responses.
1272 If a file is in modified status, individual patches derived from the
1273 modified file content can be staged.
1274 Files in added or deleted status may only be staged or rejected in
1275 their entirety.
1276 .It Fl F Ar response-script
1277 With the
1278 .Fl p
1279 option, read
1280 .Dq y ,
1281 .Dq n ,
1282 and
1283 .Dq q
1284 responses line-by-line from the specified
1285 .Ar response-script
1286 file instead of prompting interactively.
1287 .El
1288 .Pp
1289 .Cm got stage
1290 will refuse to run if certain preconditions are not met.
1291 If a file contains merge conflicts, these conflicts must be resolved first.
1292 If a file is found to be out of date relative to the head commit on the
1293 work tree's current branch, the file must be updated with
1294 .Cm got update
1295 before it can be staged (however, this does not prevent the file from
1296 becoming out-of-date at some point after having been staged).
1297 .Pp
1298 The
1299 .Cm got update ,
1300 .Cm got rebase ,
1301 and
1302 .Cm got histedit
1303 commands will refuse to run while staged changes exist.
1304 If staged changes cannot be committed because a staged path
1305 is out of date, the path must be unstaged with
1306 .Cm got unstage
1307 before it can be updated with
1308 .Cm got update ,
1309 and may then be staged again if necessary.
1310 .It Cm sg
1311 Short alias for
1312 .Cm stage .
1313 .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1314 Merge staged changes back into the work tree and put affected paths
1315 back into non-staged status.
1316 If no
1317 .Ar path
1318 is specified, unstage all staged changes across the entire work tree.
1319 Otherwise, unstage changes at or within the specified paths.
1320 .Pp
1321 Show the status of each affected file, using the following status codes:
1322 .Bl -column YXZ description
1323 .It G Ta file was unstaged
1324 .It C Ta file was unstaged and conflicts occurred during merge
1325 .It ! Ta changes destined for a missing file were not merged
1326 .It D Ta file was staged as deleted and still is deleted
1327 .It d Ta file's deletion was obstructed by local modifications
1328 .It \(a~ Ta changes destined for a non-regular file were not merged
1329 .El
1330 .Pp
1331 The options for
1332 .Cm got unstage
1333 are as follows:
1334 .Bl -tag -width Ds
1335 .It Fl p
1336 Instead of unstaging the entire content of a changed file, interactively
1337 select or reject changes for unstaging based on
1338 .Dq y
1339 (unstage change),
1340 .Dq n
1341 (keep change staged), and
1342 .Dq q
1343 (quit unstaging this file) responses.
1344 If a file is staged in modified status, individual patches derived from the
1345 staged file content can be unstaged.
1346 Files staged in added or deleted status may only be unstaged in their entirety.
1347 .It Fl F Ar response-script
1348 With the
1349 .Fl p
1350 option, read
1351 .Dq y ,
1352 .Dq n ,
1353 and
1354 .Dq q
1355 responses line-by-line from the specified
1356 .Ar response-script
1357 file instead of prompting interactively.
1358 .El
1359 .It Cm ug
1360 Short alias for
1361 .Cm unstage .
1362 .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1363 Parse and print contents of objects to standard output in a line-based
1364 text format.
1365 Content of commit, tree, and tag objects is printed in a way similar
1366 to the actual content stored in such objects.
1367 Blob object contents are printed as they would appear in files on disk.
1368 .Pp
1369 Attempt to interpret each argument as a reference, a tag name, or
1370 an object ID SHA1 hash.
1371 References will be resolved to an object ID.
1372 Tag names will resolved to a tag object.
1373 An abbreviated hash argument will be expanded to a full SHA1 hash
1374 automatically, provided the abbreviation is unique.
1375 .Pp
1376 If none of the above interpretations produce a valid result, or if the
1377 .Fl P
1378 option is used, attempt to interpret the argument as a path which will
1379 be resolved to the ID of an object found at this path in the repository.
1380 .Pp
1381 The options for
1382 .Cm got cat
1383 are as follows:
1384 .Bl -tag -width Ds
1385 .It Fl c Ar commit
1386 Look up paths in the specified
1387 .Ar commit .
1388 If this option is not used, paths are looked up in the commit resolved
1389 via the repository's HEAD reference.
1390 The expected argument is a commit ID SHA1 hash or an existing reference
1391 or tag name which will be resolved to a commit ID.
1392 An abbreviated hash argument will be expanded to a full SHA1 hash
1393 automatically, provided the abbreviation is unique.
1394 .It Fl r Ar repository-path
1395 Use the repository at the specified path.
1396 If not specified, assume the repository is located at or above the current
1397 working directory.
1398 If this directory is a
1399 .Nm
1400 work tree, use the repository path associated with this work tree.
1401 .It Fl P
1402 Interpret all arguments as paths only.
1403 This option can be used to resolve ambiguity in cases where paths
1404 look like tag names, reference names, or object IDs.
1405 .El
1406 .El
1407 .Sh ENVIRONMENT
1408 .Bl -tag -width GOT_AUTHOR
1409 .It Ev GOT_AUTHOR
1410 The author's name and email address for
1411 .Cm got commit
1412 and
1413 .Cm got import ,
1414 for example:
1415 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1416 Because
1417 .Xr git 1
1418 may fail to parse commits without an email address in author data,
1419 .Nm
1420 attempts to reject
1421 .Ev GOT_AUTHOR
1422 environment variables with a missing email address.
1423 .Pp
1424 If present, Git's
1425 .Dv user.name
1426 and
1427 .Dv user.email
1428 configuration settings in the repository's
1429 .Pa .git/config
1430 file will override the value of
1431 .Ev GOT_AUTHOR .
1432 However, the
1433 .Dv user.name
1434 and
1435 .Dv user.email
1436 configuration settings contained in Git's global
1437 .Pa ~/.gitconfig
1438 configuration file will be used only if the
1439 .Ev GOT_AUTHOR
1440 environment variable is
1441 .Em not
1442 set.
1443 .It Ev VISUAL , EDITOR
1444 The editor spawned by
1445 .Cm got commit ,
1446 .Cm got import ,
1448 .Cm got tag .
1449 .It Ev GOT_LOG_DEFAULT_LIMIT
1450 The default limit on the number of commits traversed by
1451 .Cm got log .
1452 If set to zero, the limit is unbounded.
1453 This variable will be silently ignored if it is set to a non-numeric value.
1454 .El
1455 .Sh EXIT STATUS
1456 .Ex -std got
1457 .Sh EXAMPLES
1458 Clone an existing Git repository for use with
1459 .Nm .
1460 This step currently requires
1461 .Xr git 1 :
1462 .Pp
1463 .Dl $ cd /var/git/
1464 .Dl $ git clone --bare https://github.com/openbsd/src.git
1465 .Pp
1466 Alternatively, for quick and dirty local testing of
1467 .Nm
1468 a new Git repository could be created and populated with files,
1469 e.g. from a temporary CVS checkout located at
1470 .Pa /tmp/src :
1471 .Pp
1472 .Dl $ got init /var/git/src.git
1473 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1474 .Pp
1475 Check out a work tree from the Git repository to /usr/src:
1476 .Pp
1477 .Dl $ got checkout /var/git/src.git /usr/src
1478 .Pp
1479 View local changes in a work tree directory:
1480 .Pp
1481 .Dl $ got status
1482 .Dl $ got diff | less
1483 .Pp
1484 Interactively revert selected local changes in a work tree directory:
1485 .Pp
1486 .Dl $ got revert -p -R\ .
1487 .Pp
1488 In a work tree or a git repository directory, list all branch references:
1489 .Pp
1490 .Dl $ got branch -l
1491 .Pp
1492 In a work tree or a git repository directory, create a new branch called
1493 .Dq unified-buffer-cache
1494 which is forked off the
1495 .Dq master
1496 branch:
1497 .Pp
1498 .Dl $ got branch unified-buffer-cache master
1499 .Pp
1500 Switch an existing work tree to the branch
1501 .Dq unified-buffer-cache .
1502 Local changes in the work tree will be preserved and merged if necessary:
1503 .Pp
1504 .Dl $ got update -b unified-buffer-cache
1505 .Pp
1506 Create a new commit from local changes in a work tree directory.
1507 This new commit will become the head commit of the work tree's current branch:
1508 .Pp
1509 .Dl $ got commit
1510 .Pp
1511 In a work tree or a git repository directory, view changes committed in
1512 the 3 most recent commits to the work tree's branch, or the branch resolved
1513 via the repository's HEAD reference, respectively:
1514 .Pp
1515 .Dl $ got log -p -l 3
1516 .Pp
1517 In a work tree or a git repository directory, log the history of a subdirectory:
1518 .Pp
1519 .Dl $ got log sys/uvm
1520 .Pp
1521 While operating inside a work tree, paths are specified relative to the current
1522 working directory, so this command will log the subdirectory
1523 .Pa sys/uvm :
1524 .Pp
1525 .Dl $ cd sys/uvm && got log '.'
1526 .Pp
1527 And this command has the same effect:
1528 .Pp
1529 .Dl $ cd sys/dev/usb && got log ../../uvm
1530 .Pp
1531 Add new files and remove obsolete files in a work tree directory:
1532 .Pp
1533 .Dl $ got add sys/uvm/uvm_ubc.c
1534 .Dl $ got remove sys/uvm/uvm_vnode.c
1535 .Pp
1536 Create a new commit from local changes in a work tree directory
1537 with a pre-defined log message.
1538 .Pp
1539 .Dl $ got commit -m 'unify the buffer cache'
1540 .Pp
1541 Update any work tree checked out from the
1542 .Dq unified-buffer-cache
1543 branch to the latest commit on this branch:
1544 .Pp
1545 .Dl $ got update
1546 .Pp
1547 Roll file content on the unified-buffer-cache branch back by one commit,
1548 and then fetch the rolled-back change into the work tree as a local change
1549 to be amended and perhaps committed again:
1550 .Pp
1551 .Dl $ got backout unified-buffer-cache
1552 .Dl $ got commit -m 'roll back previous'
1553 .Dl $ # now back out the previous backout :-)
1554 .Dl $ got backout unified-buffer-cache
1555 .Pp
1556 Fetch new upstream commits into the local repository's master branch.
1557 This step currently requires
1558 .Xr git 1 :
1559 .Pp
1560 .Dl $ cd /var/git/src.git
1561 .Dl $ git fetch origin master:master
1562 .Pp
1563 Rebase the
1564 .Dq unified-buffer-cache
1565 branch on top of the new head commit of the
1566 .Dq master
1567 branch.
1568 .Pp
1569 .Dl $ got update -b master
1570 .Dl $ got rebase unified-buffer-cache
1571 .Pp
1572 Create a patch from all changes on the unified-buffer-cache branch.
1573 The patch can be mailed out for review and applied to
1574 .Ox Ns 's
1575 CVS tree:
1576 .Pp
1577 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1578 .Pp
1579 Edit the entire commit history of the
1580 .Dq unified-buffer-cache
1581 branch:
1582 .Pp
1583 .Dl $ got update -b unified-buffer-cache
1584 .Dl $ got update -c master
1585 .Dl $ got histedit
1586 .Pp
1587 Additional steps are necessary if local changes need to be pushed back
1588 to the remote repository, which currently requires
1589 .Cm git fetch
1590 and
1591 .Cm git push .
1592 Before working against existing branches in a repository cloned with
1593 .Dq git clone --bare ,
1594 a Git
1595 .Dq refspec
1596 must be configured to map all references in the remote repository
1597 into the
1598 .Dq refs/remotes
1599 namespace of the local repository.
1600 This can achieved by setting Git's
1601 .Pa remote.origin.fetch
1602 configuration variable to the value
1603 .Dq +refs/heads/*:refs/remotes/origin/*
1604 with the
1605 .Cm git config
1606 command:
1607 .Pp
1608 .Dl $ cd /var/git/repo
1609 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1610 .Pp
1611 Alternatively, the following
1612 .Pa fetch
1613 configuration item can be added manually to the Git repository's
1614 .Pa config
1615 file:
1616 .Pp
1617 .Dl [remote "origin"]
1618 .Dl url = ...
1619 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1620 .Pp
1621 This configuration leaves the local repository's
1622 .Dq refs/heads
1623 namespace free for use by local branches checked out with
1624 .Cm got checkout
1625 and, if needed, created with
1626 .Cm got branch .
1627 .Pp
1628 Branches in the
1629 .Dq remotes/origin
1630 namespace can be updated with incoming changes from the remote
1631 repository with
1632 .Cm git fetch :
1633 .Pp
1634 .Dl $ cd /var/git/repo
1635 .Dl $ git fetch
1636 .Pp
1637 To make changes fetched from the remote repository appear on the
1638 .Dq master
1639 branch, the
1640 .Dq master
1641 branch must be rebased onto the
1642 .Dq origin/master
1643 branch.
1644 This will also merge local changes, if any, with the incoming changes:
1645 .Pp
1646 .Dl $ got update -b origin/master
1647 .Dl $ got rebase master
1648 .Pp
1649 On the
1650 .Dq master
1651 branch, log messages for local changes can now be amended with
1652 .Dq OK
1653 by other developers and any other important new information:
1654 .Pp
1655 .Dl $ got update -c origin/master
1656 .Dl $ got histedit -m
1657 .Pp
1658 Local changes on the
1659 .Dq master
1660 branch can then be pushed to the remote
1661 repository with
1662 .Cm git push :
1663 .Pp
1664 .Dl $ cd /var/git/repo
1665 .Dl $ git push origin master
1666 .Pp
1667 In order to merge changes committed to the
1668 .Dq unified-buffer-cache
1669 branch back into the
1670 .Dq master
1671 branch, the
1672 .Dq unified-buffer-cache
1673 branch must first be rebased onto the
1674 .Dq master
1675 branch:
1676 .Pp
1677 .Dl $ got update -b master
1678 .Dl $ got rebase unified-buffer-cache
1679 .Pp
1680 Changes on the
1681 .Dq unified-buffer-cache
1682 branch can now be made visible on the
1683 .Dq master
1684 branch with
1685 .Cm got integrate .
1686 Because the rebase operation switched the work tree to the
1687 .Dq unified-buffer-cache
1688 branch, the work tree must be switched back to the
1689 .Dq master
1690 branch before the
1691 .Dq unified-buffer-cache
1692 branch can be integrated into
1693 .Dq master :
1694 .Pp
1695 .Dl $ got update -b master
1696 .Dl $ got integrate unified-buffer-cache
1697 .Sh SEE ALSO
1698 .Xr tog 1 ,
1699 .Xr git-repository 5 ,
1700 .Xr got-worktree 5
1701 .Sh AUTHORS
1702 .An Stefan Sperling Aq Mt stsp@openbsd.org
1703 .An Martin Pieuchot Aq Mt mpi@openbsd.org
1704 .An Joshua Stein Aq Mt jcs@openbsd.org
1705 .Sh CAVEATS
1706 .Nm
1707 is a work-in-progress and many commands remain to be implemented.
1708 At present, the user has to fall back on
1709 .Xr git 1
1710 to perform many tasks, in particular tasks related to repository
1711 administration and tasks which require a network connection.