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