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 m Ar message Oc Oo Fl r Ar repository-path Oc Oo Fl l Oc Ar name Op Ar commit
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 Expect one or two arguments and 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 Otherwise, the expected argument is a commit ID SHA1 hash or an existing
629 reference or tag name which will be resolved to a commit ID.
630 An abbreviated hash argument will be expanded to a full SHA1 hash
631 automatically, provided the abbreviation is unique.
632 .Pp
633 The options for
634 .Cm got tag
635 are as follows:
636 .Bl -tag -width Ds
637 .It Fl m Ar message
638 Use the specified tag message when creating the new tag
639 Without the
640 .Fl m
641 option,
642 .Cm got tag
643 opens a temporary file in an editor where a tag message can be written.
644 .It Fl r Ar repository-path
645 Use the repository at the specified path.
646 If not specified, assume the repository is located at or above the current
647 working directory.
648 If this directory is a
649 .Nm
650 work tree, use the repository path associated with this work tree.
651 .It Fl l
652 List all existing tags in the repository instead of creating a new tag.
653 If this option is used, no other command-line arguments are allowed.
654 .El
655 .Pp
656 By design, the
657 .Cm got tag
658 command will not delete tags or change existing tags.
659 If a tag must be deleted, the
660 .Cm got ref
661 command may be used to delete a tag's reference.
662 This should only be done if the tag has not already been copied to
663 another repository.
664 .It Cm add Oo Fl R Oc Oo Fl I Oc Ar path ...
665 Schedule unversioned files in a work tree for addition to the
666 repository in the next commit.
667 .Pp
668 The options for
669 .Cm got add
670 are as follows:
671 .Bl -tag -width Ds
672 .It Fl R
673 Permit recursion into directories.
674 If this option is not specified,
675 .Cm got add
676 will refuse to run if a specified
677 .Ar path
678 is a directory.
679 .It Fl I
680 With -R, add files even if they match a
681 .Cm got status
682 ignore pattern.
683 .El
684 .It Cm remove Oo Fl f Oc Oo Fl k Oc Oo Fl R Oc Ar path ...
685 Remove versioned files from a work tree and schedule them for deletion
686 from the repository in the next commit.
687 .Pp
688 The options for
689 .Cm got remove
690 are as follows:
691 .Bl -tag -width Ds
692 .It Fl f
693 Perform the operation even if a file contains uncommitted modifications.
694 .It Fl k
695 Keep affected files on disk.
696 .It Fl R
697 Permit recursion into directories.
698 If this option is not specified,
699 .Cm got remove
700 will refuse to run if a specified
701 .Ar path
702 is a directory.
703 .El
704 .It Cm rm
705 Short alias for
706 .Cm remove .
707 .It Cm revert Oo Fl p Oc Oo Fl F Ar response-script Oc Oo Fl R Oc Ar path ...
708 Revert any uncommitted changes in files at the specified paths.
709 File contents will be overwritten with those contained in the
710 work tree's base commit.
711 There is no way to bring discarded changes back after
712 .Cm got revert !
713 .Pp
714 If a file was added with
715 .Cm got add
716 it will become an unversioned file again.
717 If a file was deleted with
718 .Cm got remove
719 it will be restored.
720 .Pp
721 The options for
722 .Cm got revert
723 are as follows:
724 .Bl -tag -width Ds
725 .It Fl p
726 Instead of reverting all changes in files, interactively select or reject
727 changes to revert based on
728 .Dq y
729 (revert change),
730 .Dq n
731 (keep change), and
732 .Dq q
733 (quit reverting this file) responses.
734 If a file is in modified status, individual patches derived from the
735 modified file content can be reverted.
736 Files in added or deleted status may only be reverted in their entirety.
737 .It Fl F Ar response-script
738 With the
739 .Fl p
740 option, read
741 .Dq y ,
742 .Dq n ,
743 and
744 .Dq q
745 responses line-by-line from the specified
746 .Ar response-script
747 file instead of prompting interactively.
748 .It Fl R
749 Permit recursion into directories.
750 If this option is not specified,
751 .Cm got revert
752 will refuse to run if a specified
753 .Ar path
754 is a directory.
755 .El
756 .It Cm rv
757 Short alias for
758 .Cm revert .
759 .It Cm commit Oo Fl m Ar message Oc Op Ar path ...
760 Create a new commit in the repository from changes in a work tree
761 and use this commit as the new base commit for the work tree.
762 If no
763 .Ar path
764 is specified, commit all changes in the work tree.
765 Otherwise, commit changes at or within the specified paths.
766 .Pp
767 If changes have been explicitly staged for commit with
768 .Cm got stage ,
769 only commit staged changes and reject any specified paths which
770 have not been staged.
771 .Pp
772 Show the status of each affected file, using the following status codes:
773 .Bl -column YXZ description
774 .It M Ta modified file
775 .It D Ta file was deleted
776 .It A Ta new file was added
777 .It m Ta modified file modes (executable bit only)
778 .El
779 .Pp
780 Files which are not part of the new commit will retain their previously
781 recorded base commit.
782 Some
783 .Nm
784 commands may refuse to run while the work tree contains files from
785 multiple base commits.
786 The base commit of such a work tree can be made consistent by running
787 .Cm got update
788 across the entire work tree.
789 .Pp
790 The
791 .Cm got commit
792 command requires the
793 .Ev GOT_AUTHOR
794 environment variable to be set,
795 unless Git's
796 .Dv user.name
797 and
798 .Dv user.email
799 configuration settings can be
800 obtained from the repository's
801 .Pa .git/config
802 file or from Git's global
803 .Pa ~/.gitconfig
804 configuration file.
805 .Pp
806 The options for
807 .Cm got commit
808 are as follows:
809 .Bl -tag -width Ds
810 .It Fl m Ar message
811 Use the specified log message when creating the new commit.
812 Without the
813 .Fl m
814 option,
815 .Cm got commit
816 opens a temporary file in an editor where a log message can be written.
817 .El
818 .Pp
819 .Cm got commit
820 will refuse to run if certain preconditions are not met.
821 If the work tree's current branch is not in the
822 .Dq refs/heads/
823 reference namespace, new commits may not be created on this branch.
824 Local changes may only be committed if they are based on file content
825 found in the most recent commit on the work tree's branch.
826 If a path is found to be out of date,
827 .Cm got update
828 must be used first in order to merge local changes with changes made
829 in the repository.
830 .It Cm ci
831 Short alias for
832 .Cm commit .
833 .It Cm cherrypick Ar commit
834 Merge changes from a single
835 .Ar commit
836 into the work tree.
837 The specified
838 .Ar commit
839 must be on a different branch than the work tree's base commit.
840 The expected argument is a reference or a commit ID SHA1 hash.
841 An abbreviated hash argument will be expanded to a full SHA1 hash
842 automatically, provided the abbreviation is unique.
843 .Pp
844 Show the status of each affected file, using the following status codes:
845 .Bl -column YXZ description
846 .It G Ta file was merged
847 .It C Ta file was merged and conflicts occurred during merge
848 .It ! Ta changes destined for a missing file were not merged
849 .It D Ta file was deleted
850 .It d Ta file's deletion was obstructed by local modifications
851 .It A Ta new file was added
852 .It \(a~ Ta changes destined for a non-regular file were not merged
853 .El
854 .Pp
855 The merged changes will appear as local changes in the work tree, which
856 may be viewed with
857 .Cm got diff ,
858 amended manually or with further
859 .Cm got cherrypick
860 commands,
861 committed with
862 .Cm got commit ,
863 or discarded again with
864 .Cm got revert .
865 .Pp
866 .Cm got cherrypick
867 will refuse to run if certain preconditions are not met.
868 If the work tree contains multiple base commits it must first be updated
869 to a single base commit with
870 .Cm got update .
871 If the work tree already contains files with merge conflicts, these
872 conflicts must be resolved first.
873 .It Cm cy
874 Short alias for
875 .Cm cherrypick .
876 .It Cm backout Ar commit
877 Reverse-merge changes from a single
878 .Ar commit
879 into the work tree.
880 The specified
881 .Ar commit
882 must be on the same branch as the work tree's base commit.
883 The expected argument is a reference or a commit ID SHA1 hash.
884 An abbreviated hash argument will be expanded to a full SHA1 hash
885 automatically, provided the abbreviation is unique.
886 .Pp
887 Show the status of each affected file, using the following status codes:
888 .Bl -column YXZ description
889 .It G Ta file was merged
890 .It C Ta file was merged and conflicts occurred during merge
891 .It ! Ta changes destined for a missing file were not merged
892 .It D Ta file was deleted
893 .It d Ta file's deletion was obstructed by local modifications
894 .It A Ta new file was added
895 .It \(a~ Ta changes destined for a non-regular file were not merged
896 .El
897 .Pp
898 The reverse-merged changes will appear as local changes in the work tree,
899 which may be viewed with
900 .Cm got diff ,
901 amended manually or with further
902 .Cm got backout
903 commands,
904 committed with
905 .Cm got commit ,
906 or discarded again with
907 .Cm got revert .
908 .Pp
909 .Cm got backout
910 will refuse to run if certain preconditions are not met.
911 If the work tree contains multiple base commits it must first be updated
912 to a single base commit with
913 .Cm got update .
914 If the work tree already contains files with merge conflicts, these
915 conflicts must be resolved first.
916 .It Cm bo
917 Short alias for
918 .Cm backout .
919 .It Cm rebase Oo Fl a Oc Oo Fl c Oc Op Ar branch
920 Rebase commits on the specified
921 .Ar branch
922 onto the tip of the current branch of the work tree.
923 The
924 .Ar branch
925 must share common ancestry with the work tree's current branch.
926 Rebasing begins with the first descendant commit of the youngest
927 common ancestor commit shared by the specified
928 .Ar branch
929 and the work tree's current branch, and stops once the tip commit
930 of the specified
931 .Ar branch
932 has been rebased.
933 .Pp
934 Rebased commits are accumulated on a temporary branch which the work tree
935 will remain switched to throughout the entire rebase operation.
936 Commits on this branch represent the same changes with the same log
937 messages as their counterparts on the original
938 .Ar branch ,
939 but with different commit IDs.
940 Once rebasing has completed successfully, the temporary branch becomes
941 the new version of the specified
942 .Ar branch
943 and the work tree is automatically switched to it.
944 .Pp
945 While rebasing commits, show the status of each affected file,
946 using the following status codes:
947 .Bl -column YXZ description
948 .It G Ta file was merged
949 .It C Ta file was merged and conflicts occurred during merge
950 .It ! Ta changes destined for a missing file were not merged
951 .It D Ta file was deleted
952 .It d Ta file's deletion was obstructed by local modifications
953 .It A Ta new file was added
954 .It \(a~ Ta changes destined for a non-regular file were not merged
955 .El
956 .Pp
957 If merge conflicts occur the rebase operation is interrupted and may
958 be continued once conflicts have been resolved.
959 Alternatively, the rebase operation may be aborted which will leave
960 .Ar branch
961 unmodified and the work tree switched back to its original branch.
962 .Pp
963 If a merge conflict is resolved in a way which renders the merged
964 change into a no-op change, the corresponding commit will be elided
965 when the rebase operation continues.
966 .Pp
967 .Cm got rebase
968 will refuse to run if certain preconditions are not met.
969 If the work tree is not yet fully updated to the tip commit of its
970 branch then the work tree must first be updated with
971 .Cm got update .
972 If changes have been staged with
973 .Cm got stage ,
974 these changes must first be committed with
975 .Cm got commit
976 or unstaged with
977 .Cm got unstage .
978 If the work tree contains local changes, these changes must first be
979 committed with
980 .Cm got commit
981 or reverted with
982 .Cm got revert .
983 If the
984 .Ar branch
985 contains changes to files outside of the work tree's path prefix,
986 the work tree cannot be used to rebase this branch.
987 .Pp
988 The
989 .Cm got update
990 and
991 .Cm got commit
992 commands will refuse to run while a rebase operation is in progress.
993 Other commands which manipulate the work tree may be used for
994 conflict resolution purposes.
995 .Pp
996 The options for
997 .Cm got rebase
998 are as follows:
999 .Bl -tag -width Ds
1000 .It Fl a
1001 Abort an interrupted rebase operation.
1002 If this option is used, no other command-line arguments are allowed.
1003 .It Fl c
1004 Continue an interrupted rebase operation.
1005 If this option is used, no other command-line arguments are allowed.
1006 .El
1007 .It Cm rb
1008 Short alias for
1009 .Cm rebase .
1010 .It Cm histedit Oo Fl a Oc Oo Fl c Oc Oo Fl F Ar histedit-script Oc Oo Fl m Oc
1011 Edit commit history between the work tree's current base commit and
1012 the tip commit of the work tree's current branch.
1013 .Pp
1014 Editing of commit history is controlled via a
1015 .Ar histedit script
1016 which can be edited interactively, passed on the command line,
1017 or generated with the
1018 .Fl m
1019 option if only log messages need to be edited.
1020 .Pp
1021 The format of the histedit script is line-based.
1022 Each line in the script begins with a command name, followed by
1023 whitespace and an argument.
1024 For most commands, the expected argument is a commit ID SHA1 hash.
1025 Any remaining text on the line is ignored.
1026 Lines which begin with the
1027 .Sq #
1028 character are ignored entirely.
1029 .Pp
1030 The available commands are as follows:
1031 .Bl -column YXZ pick-commit
1032 .It pick Ar commit Ta Use the specified commit as it is.
1033 .It edit Ar commit Ta Use the specified commit but once changes have been
1034 merged into the work tree interrupt the histedit operation for amending.
1035 .It fold Ar commit Ta Combine the specified commit with the next commit
1036 listed further below that will be used.
1037 .It drop Ar commit Ta Remove this commit from the edited history.
1038 .It mesg Ar log-message Ta Use the specified single-line log message for
1039 the commit on the previous line.
1040 If the log message argument is left empty, open an editor where a new
1041 log message can be written.
1042 .El
1043 .Pp
1044 Every commit in the history being edited must be mentioned in the script.
1045 Lines may be re-ordered to change the order of commits in the edited history.
1046 .Pp
1047 Edited commits are accumulated on a temporary branch which the work tree
1048 will remain switched to throughout the entire histedit operation.
1049 Once history editing has completed successfully, the temporary branch becomes
1050 the new version of the work tree's branch and the work tree is automatically
1051 switched to it.
1052 .Pp
1053 While merging commits, show the status of each affected file,
1054 using the following status codes:
1055 .Bl -column YXZ description
1056 .It G Ta file was merged
1057 .It C Ta file was merged and conflicts occurred during merge
1058 .It ! Ta changes destined for a missing file were not merged
1059 .It D Ta file was deleted
1060 .It d Ta file's deletion was obstructed by local modifications
1061 .It A Ta new file was added
1062 .It \(a~ Ta changes destined for a non-regular file were not merged
1063 .El
1064 .Pp
1065 If merge conflicts occur the histedit operation is interrupted and may
1066 be continued once conflicts have been resolved.
1067 Alternatively, the histedit operation may be aborted which will leave
1068 the work tree switched back to its original branch.
1069 .Pp
1070 If a merge conflict is resolved in a way which renders the merged
1071 change into a no-op change, the corresponding commit will be elided
1072 when the histedit operation continues.
1073 .Pp
1074 .Cm got histedit
1075 will refuse to run if certain preconditions are not met.
1076 If the work tree's current branch is not in the
1077 .Dq refs/heads/
1078 reference namespace, the history of the branch may not be edited.
1079 If the work tree contains multiple base commits it must first be updated
1080 to a single base commit with
1081 .Cm got update .
1082 If changes have been staged with
1083 .Cm got stage ,
1084 these changes must first be committed with
1085 .Cm got commit
1086 or unstaged with
1087 .Cm got unstage .
1088 If the work tree contains local changes, these changes must first be
1089 committed with
1090 .Cm got commit
1091 or reverted with
1092 .Cm got revert .
1093 If the edited history contains changes to files outside of the work tree's
1094 path prefix, the work tree cannot be used to edit the history of this branch.
1095 .Pp
1096 The
1097 .Cm got update
1098 command will refuse to run while a histedit operation is in progress.
1099 Other commands which manipulate the work tree may be used, and the
1100 .Cm got commit
1101 command may be used to commit arbitrary changes to the temporary branch
1102 while the histedit operation is interrupted.
1103 .Pp
1104 The options for
1105 .Cm got histedit
1106 are as follows:
1107 .Bl -tag -width Ds
1108 .It Fl a
1109 Abort an interrupted histedit operation.
1110 If this option is used, no other command-line arguments are allowed.
1111 .It Fl c
1112 Continue an interrupted histedit operation.
1113 If this option is used, no other command-line arguments are allowed.
1114 .It Fl m
1115 Edit log messages only.
1116 This option is a quick equivalent to a histedit script which edits
1117 only log messages but otherwise leaves every picked commit as-is.
1118 The
1119 .Fl m
1120 option can only be used when starting a new histedit operation.
1121 If this option is used, no other command-line arguments are allowed.
1122 .El
1123 .It Cm he
1124 Short alias for
1125 .Cm histedit .
1126 .It Cm integrate Ar branch
1127 Integrate the specified
1128 .Ar branch
1129 into the work tree's current branch.
1130 Files in the work tree are updated to match the contents on the integrated
1131 .Ar branch ,
1132 and the reference of the work tree's branch is changed to point at the
1133 head commit of the integrated
1134 .Ar branch .
1135 .Pp
1136 Both branches can be considered equivalent after integration since they
1137 will be pointing at the same commit.
1138 Both branches remain available for future work, if desired.
1139 In case the integrated
1140 .Ar branch
1141 is no longer needed it may be deleted with
1142 .Cm got branch -d .
1143 .Pp
1144 Show the status of each affected file, using the following status codes:
1145 .Bl -column YXZ description
1146 .It U Ta file was updated
1147 .It D Ta file was deleted
1148 .It A Ta new file was added
1149 .It \(a~ Ta versioned file is obstructed by a non-regular file
1150 .It ! Ta a missing versioned file was restored
1151 .El
1152 .Pp
1153 .Cm got integrate
1154 will refuse to run if certain preconditions are not met.
1155 Most importantly, the
1156 .Ar branch
1157 must have been rebased onto the work tree's current branch with
1158 .Cm got rebase
1159 before it can be integrated, in order to linearize commit history and
1160 resolve merge conflicts.
1161 If the work tree contains multiple base commits it must first be updated
1162 to a single base commit with
1163 .Cm got update .
1164 If changes have been staged with
1165 .Cm got stage ,
1166 these changes must first be committed with
1167 .Cm got commit
1168 or unstaged with
1169 .Cm got unstage .
1170 If the work tree contains local changes, these changes must first be
1171 committed with
1172 .Cm got commit
1173 or reverted with
1174 .Cm got revert .
1175 .It Cm ig
1176 Short alias for
1177 .Cm integrate .
1178 .It Cm stage Oo Fl l Oc Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1179 Stage local changes for inclusion in the next commit.
1180 If no
1181 .Ar path
1182 is specified, stage all changes in the work tree.
1183 Otherwise, stage changes at or within the specified paths.
1184 Paths may be staged if they are added, modified, or deleted according to
1185 .Cm got status .
1186 .Pp
1187 Show the status of each affected file, using the following status codes:
1188 .Bl -column YXZ description
1189 .It A Ta file addition has been staged
1190 .It M Ta file modification has been staged
1191 .It D Ta file deletion has been staged
1192 .El
1193 .Pp
1194 Staged file contents are saved in newly created blob objects in the repository.
1195 These blobs will be referred to by tree objects once staged changes have been
1196 committed.
1197 .Pp
1198 Staged changes affect the behaviour of
1199 .Cm got commit ,
1200 .Cm got status ,
1201 and
1202 .Cm got diff .
1203 While paths with staged changes exist, the
1204 .Cm got commit
1205 command will refuse to commit any paths which do not have staged changes.
1206 Local changes created on top of staged changes can only be committed if
1207 the path is staged again, or if the staged changes are committed first.
1208 The
1209 .Cm got status
1210 command will show both local changes and staged changes.
1211 The
1212 .Cm got diff
1213 command is able to display local changes relative to staged changes,
1214 and to display staged changes relative to the repository.
1215 The
1216 .Cm got revert
1217 command cannot revert staged changes but may be used to revert
1218 local changes created on top of staged changes.
1219 .Pp
1220 The options for
1221 .Cm got stage
1222 are as follows:
1223 .Bl -tag -width Ds
1224 .It Fl l
1225 Instead of staging new changes, list paths which are already staged,
1226 along with the IDs of staged blob objects and stage status codes.
1227 If paths were provided in the command line show the staged paths
1228 among the specified paths.
1229 Otherwise, show all staged paths.
1230 .It Fl p
1231 Instead of staging the entire content of a changed file, interactively
1232 select or reject changes for staging based on
1233 .Dq y
1234 (stage change),
1235 .Dq n
1236 (reject change), and
1237 .Dq q
1238 (quit staging this file) responses.
1239 If a file is in modified status, individual patches derived from the
1240 modified file content can be staged.
1241 Files in added or deleted status may only be staged or rejected in
1242 their entirety.
1243 .It Fl F Ar response-script
1244 With the
1245 .Fl p
1246 option, read
1247 .Dq y ,
1248 .Dq n ,
1249 and
1250 .Dq q
1251 responses line-by-line from the specified
1252 .Ar response-script
1253 file instead of prompting interactively.
1254 .El
1255 .Pp
1256 .Cm got stage
1257 will refuse to run if certain preconditions are not met.
1258 If a file contains merge conflicts, these conflicts must be resolved first.
1259 If a file is found to be out of date relative to the head commit on the
1260 work tree's current branch, the file must be updated with
1261 .Cm got update
1262 before it can be staged (however, this does not prevent the file from
1263 becoming out-of-date at some point after having been staged).
1264 .Pp
1265 The
1266 .Cm got update ,
1267 .Cm got rebase ,
1268 and
1269 .Cm got histedit
1270 commands will refuse to run while staged changes exist.
1271 If staged changes cannot be committed because a staged path
1272 is out of date, the path must be unstaged with
1273 .Cm got unstage
1274 before it can be updated with
1275 .Cm got update ,
1276 and may then be staged again if necessary.
1277 .It Cm sg
1278 Short alias for
1279 .Cm stage .
1280 .It Cm unstage Oo Fl p Oc Oo Fl F Ar response-script Oc Op Ar path ...
1281 Merge staged changes back into the work tree and put affected paths
1282 back into non-staged status.
1283 If no
1284 .Ar path
1285 is specified, unstage all staged changes across the entire work tree.
1286 Otherwise, unstage changes at or within the specified paths.
1287 .Pp
1288 Show the status of each affected file, using the following status codes:
1289 .Bl -column YXZ description
1290 .It G Ta file was unstaged
1291 .It C Ta file was unstaged and conflicts occurred during merge
1292 .It ! Ta changes destined for a missing file were not merged
1293 .It D Ta file was staged as deleted and still is deleted
1294 .It d Ta file's deletion was obstructed by local modifications
1295 .It \(a~ Ta changes destined for a non-regular file were not merged
1296 .El
1297 .Pp
1298 The options for
1299 .Cm got unstage
1300 are as follows:
1301 .Bl -tag -width Ds
1302 .It Fl p
1303 Instead of unstaging the entire content of a changed file, interactively
1304 select or reject changes for unstaging based on
1305 .Dq y
1306 (unstage change),
1307 .Dq n
1308 (keep change staged), and
1309 .Dq q
1310 (quit unstaging this file) responses.
1311 If a file is staged in modified status, individual patches derived from the
1312 staged file content can be unstaged.
1313 Files staged in added or deleted status may only be unstaged in their entirety.
1314 .It Fl F Ar response-script
1315 With the
1316 .Fl p
1317 option, read
1318 .Dq y ,
1319 .Dq n ,
1320 and
1321 .Dq q
1322 responses line-by-line from the specified
1323 .Ar response-script
1324 file instead of prompting interactively.
1325 .El
1326 .It Cm ug
1327 Short alias for
1328 .Cm unstage .
1329 .It Cm cat Oo Fl c Ar commit Oc Oo Fl r Ar repository-path Oc Oo Fl P Oc Ar arg ...
1330 Parse and print contents of objects to standard output in a line-based
1331 text format.
1332 Content of commit, tree, and tag objects is printed in a way similar
1333 to the actual content stored in such objects.
1334 Blob object contents are printed as they would appear in files on disk.
1335 .Pp
1336 Attempt to interpret each argument as a reference, a tag name, or
1337 an object ID SHA1 hash.
1338 References will be resolved to an object ID.
1339 Tag names will resolved to a tag object.
1340 An abbreviated hash argument will be expanded to a full SHA1 hash
1341 automatically, provided the abbreviation is unique.
1342 .Pp
1343 If none of the above interpretations produce a valid result, or if the
1344 .Fl P
1345 option is used, attempt to interpret the argument as a path which will
1346 be resolved to the ID of an object found at this path in the repository.
1347 .Pp
1348 The options for
1349 .Cm got cat
1350 are as follows:
1351 .Bl -tag -width Ds
1352 .It Fl c Ar commit
1353 Look up paths in the specified
1354 .Ar commit .
1355 If this option is not used, paths are looked up in the commit resolved
1356 via the repository's HEAD reference.
1357 The expected argument is a commit ID SHA1 hash or an existing reference
1358 or tag name which will be resolved to a commit ID.
1359 An abbreviated hash argument will be expanded to a full SHA1 hash
1360 automatically, provided the abbreviation is unique.
1361 .It Fl r Ar repository-path
1362 Use the repository at the specified path.
1363 If not specified, assume the repository is located at or above the current
1364 working directory.
1365 If this directory is a
1366 .Nm
1367 work tree, use the repository path associated with this work tree.
1368 .It Fl P
1369 Interpret all arguments as paths only.
1370 This option can be used to resolve ambiguity in cases where paths
1371 look like tag names, reference names, or object IDs.
1372 .El
1373 .El
1374 .Sh ENVIRONMENT
1375 .Bl -tag -width GOT_AUTHOR
1376 .It Ev GOT_AUTHOR
1377 The author's name and email address for
1378 .Cm got commit
1379 and
1380 .Cm got import ,
1381 for example:
1382 .Dq An Flan Hacker Aq Mt flan_hacker@openbsd.org .
1383 Because
1384 .Xr git 1
1385 may fail to parse commits without an email address in author data,
1386 .Nm
1387 attempts to reject
1388 .Ev GOT_AUTHOR
1389 environment variables with a missing email address.
1390 .Pp
1391 If present, Git's
1392 .Dv user.name
1393 and
1394 .Dv user.email
1395 configuration settings in the repository's
1396 .Pa .git/config
1397 file will override the value of
1398 .Ev GOT_AUTHOR .
1399 However, the
1400 .Dv user.name
1401 and
1402 .Dv user.email
1403 configuration settings contained in Git's global
1404 .Pa ~/.gitconfig
1405 configuration file will be used only if the
1406 .Ev GOT_AUTHOR
1407 environment variable is
1408 .Em not
1409 set.
1410 .It Ev VISUAL , EDITOR
1411 The editor spawned by
1412 .Cm got commit ,
1413 .Cm got import ,
1415 .Cm got tag .
1416 .It Ev GOT_LOG_DEFAULT_LIMIT
1417 The default limit on the number of commits traversed by
1418 .Cm got log .
1419 If set to zero, the limit is unbounded.
1420 This variable will be silently ignored if it is set to a non-numeric value.
1421 .El
1422 .Sh EXIT STATUS
1423 .Ex -std got
1424 .Sh EXAMPLES
1425 Clone an existing Git repository for use with
1426 .Nm .
1427 This step currently requires
1428 .Xr git 1 :
1429 .Pp
1430 .Dl $ cd /var/git/
1431 .Dl $ git clone --bare https://github.com/openbsd/src.git
1432 .Pp
1433 Alternatively, for quick and dirty local testing of
1434 .Nm
1435 a new Git repository could be created and populated with files,
1436 e.g. from a temporary CVS checkout located at
1437 .Pa /tmp/src :
1438 .Pp
1439 .Dl $ got init /var/git/src.git
1440 .Dl $ got import -r /var/git/src.git -I CVS -I obj /tmp/src
1441 .Pp
1442 Check out a work tree from the Git repository to /usr/src:
1443 .Pp
1444 .Dl $ got checkout /var/git/src.git /usr/src
1445 .Pp
1446 View local changes in a work tree directory:
1447 .Pp
1448 .Dl $ got status
1449 .Dl $ got diff | less
1450 .Pp
1451 Interactively revert selected local changes in a work tree directory:
1452 .Pp
1453 .Dl $ got revert -p -R\ .
1454 .Pp
1455 In a work tree or a git repository directory, list all branch references:
1456 .Pp
1457 .Dl $ got branch -l
1458 .Pp
1459 In a work tree or a git repository directory, create a new branch called
1460 .Dq unified-buffer-cache
1461 which is forked off the
1462 .Dq master
1463 branch:
1464 .Pp
1465 .Dl $ got branch unified-buffer-cache master
1466 .Pp
1467 Switch an existing work tree to the branch
1468 .Dq unified-buffer-cache .
1469 Local changes in the work tree will be preserved and merged if necessary:
1470 .Pp
1471 .Dl $ got update -b unified-buffer-cache
1472 .Pp
1473 Create a new commit from local changes in a work tree directory.
1474 This new commit will become the head commit of the work tree's current branch:
1475 .Pp
1476 .Dl $ got commit
1477 .Pp
1478 In a work tree or a git repository directory, view changes committed in
1479 the 3 most recent commits to the work tree's branch, or the branch resolved
1480 via the repository's HEAD reference, respectively:
1481 .Pp
1482 .Dl $ got log -p -l 3
1483 .Pp
1484 In a work tree or a git repository directory, log the history of a subdirectory:
1485 .Pp
1486 .Dl $ got log sys/uvm
1487 .Pp
1488 While operating inside a work tree, paths are specified relative to the current
1489 working directory, so this command will log the subdirectory
1490 .Pa sys/uvm :
1491 .Pp
1492 .Dl $ cd sys/uvm && got log '.'
1493 .Pp
1494 And this command has the same effect:
1495 .Pp
1496 .Dl $ cd sys/dev/usb && got log ../../uvm
1497 .Pp
1498 Add new files and remove obsolete files in a work tree directory:
1499 .Pp
1500 .Dl $ got add sys/uvm/uvm_ubc.c
1501 .Dl $ got remove sys/uvm/uvm_vnode.c
1502 .Pp
1503 Create a new commit from local changes in a work tree directory
1504 with a pre-defined log message.
1505 .Pp
1506 .Dl $ got commit -m 'unify the buffer cache'
1507 .Pp
1508 Update any work tree checked out from the
1509 .Dq unified-buffer-cache
1510 branch to the latest commit on this branch:
1511 .Pp
1512 .Dl $ got update
1513 .Pp
1514 Roll file content on the unified-buffer-cache branch back by one commit,
1515 and then fetch the rolled-back change into the work tree as a local change
1516 to be amended and perhaps committed again:
1517 .Pp
1518 .Dl $ got backout unified-buffer-cache
1519 .Dl $ got commit -m 'roll back previous'
1520 .Dl $ # now back out the previous backout :-)
1521 .Dl $ got backout unified-buffer-cache
1522 .Pp
1523 Fetch new upstream commits into the local repository's master branch.
1524 This step currently requires
1525 .Xr git 1 :
1526 .Pp
1527 .Dl $ cd /var/git/src.git
1528 .Dl $ git fetch origin master:master
1529 .Pp
1530 Rebase the
1531 .Dq unified-buffer-cache
1532 branch on top of the new head commit of the
1533 .Dq master
1534 branch.
1535 .Pp
1536 .Dl $ got update -b master
1537 .Dl $ got rebase unified-buffer-cache
1538 .Pp
1539 Create a patch from all changes on the unified-buffer-cache branch.
1540 The patch can be mailed out for review and applied to
1541 .Ox Ns 's
1542 CVS tree:
1543 .Pp
1544 .Dl $ got diff master unified-buffer-cache > /tmp/ubc.diff
1545 .Pp
1546 Edit the entire commit history of the
1547 .Dq unified-buffer-cache
1548 branch:
1549 .Pp
1550 .Dl $ got update -b unified-buffer-cache
1551 .Dl $ got update -c master
1552 .Dl $ got histedit
1553 .Pp
1554 Additional steps are necessary if local changes need to be pushed back
1555 to the remote repository, which currently requires
1556 .Cm git fetch
1557 and
1558 .Cm git push .
1559 Before working against existing branches in a repository cloned with
1560 .Dq git clone --bare ,
1561 a Git
1562 .Dq refspec
1563 must be configured to map all references in the remote repository
1564 into the
1565 .Dq refs/remotes
1566 namespace of the local repository.
1567 This can achieved by setting Git's
1568 .Pa remote.origin.fetch
1569 configuration variable to the value
1570 .Dq +refs/heads/*:refs/remotes/origin/*
1571 with the
1572 .Cm git config
1573 command:
1574 .Pp
1575 .Dl $ cd /var/git/repo
1576 .Dl $ git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
1577 .Pp
1578 Alternatively, the following
1579 .Pa fetch
1580 configuration item can be added manually to the Git repository's
1581 .Pa config
1582 file:
1583 .Pp
1584 .Dl [remote "origin"]
1585 .Dl url = ...
1586 .Dl fetch = +refs/heads/*:refs/remotes/origin/*
1587 .Pp
1588 This configuration leaves the local repository's
1589 .Dq refs/heads
1590 namespace free for use by local branches checked out with
1591 .Cm got checkout
1592 and, if needed, created with
1593 .Cm got branch .
1594 .Pp
1595 Branches in the
1596 .Dq remotes/origin
1597 namespace can be updated with incoming changes from the remote
1598 repository with
1599 .Cm git fetch :
1600 .Pp
1601 .Dl $ cd /var/git/repo
1602 .Dl $ git fetch
1603 .Pp
1604 To make changes fetched from the remote repository appear on the
1605 .Dq master
1606 branch, the
1607 .Dq master
1608 branch must be rebased onto the
1609 .Dq origin/master
1610 branch.
1611 This will also merge local changes, if any, with the incoming changes:
1612 .Pp
1613 .Dl $ got update -b origin/master
1614 .Dl $ got rebase master
1615 .Pp
1616 On the
1617 .Dq master
1618 branch, log messages for local changes can now be amended with
1619 .Dq OK
1620 by other developers and any other important new information:
1621 .Pp
1622 .Dl $ got update -c origin/master
1623 .Dl $ got histedit -m
1624 .Pp
1625 Local changes on the
1626 .Dq master
1627 branch can then be pushed to the remote
1628 repository with
1629 .Cm git push :
1630 .Pp
1631 .Dl $ cd /var/git/repo
1632 .Dl $ git push origin master
1633 .Pp
1634 In order to merge changes committed to the
1635 .Dq unified-buffer-cache
1636 branch back into the
1637 .Dq master
1638 branch, the
1639 .Dq unified-buffer-cache
1640 branch must first be rebased onto the
1641 .Dq master
1642 branch:
1643 .Pp
1644 .Dl $ got update -b master
1645 .Dl $ got rebase unified-buffer-cache
1646 .Pp
1647 Changes on the
1648 .Dq unified-buffer-cache
1649 branch can now be made visible on the
1650 .Dq master
1651 branch with
1652 .Cm got integrate .
1653 Because the rebase operation switched the work tree to the
1654 .Dq unified-buffer-cache
1655 branch, the work tree must be switched back to the
1656 .Dq master
1657 branch before the
1658 .Dq unified-buffer-cache
1659 branch can be integrated into
1660 .Dq master :
1661 .Pp
1662 .Dl $ got update -b master
1663 .Dl $ got integrate unified-buffer-cache
1664 .Sh SEE ALSO
1665 .Xr tog 1 ,
1666 .Xr git-repository 5 ,
1667 .Xr got-worktree 5
1668 .Sh AUTHORS
1669 .An Stefan Sperling Aq Mt stsp@openbsd.org
1670 .An Martin Pieuchot Aq Mt mpi@openbsd.org
1671 .An Joshua Stein Aq Mt jcs@openbsd.org
1672 .Sh CAVEATS
1673 .Nm
1674 is a work-in-progress and many commands remain to be implemented.
1675 At present, the user has to fall back on
1676 .Xr git 1
1677 to perform many tasks, in particular tasks related to repository
1678 administration and tasks which require a network connection.