Blob


1 .\"
2 .\" Copyright (c) 2017 Martin Pieuchot
3 .\" Copyright (c) 2018, 2019 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 preceed the command name, and are as follows:
54 .Bl -tag -width tenletters
55 .It Fl h
56 Display usage information.
57 .El
58 .Pp
59 The commands for
60 .Nm
61 are as follows:
62 .Bl -tag -width checkout
63 .It Cm init Ar path
64 Create a new empty repository at the specified
65 .Ar path .
66 .It Cm checkout [ Fl b Ar branch ] [ Fl c Ar commit ] [ Fl p Ar path-prefix ] repository-path [ work-tree-path ]
67 Copy files from a repository into a new work tree.
68 If the
69 .Ar work tree path
70 is not specified, either use the last component of
71 .Ar repository path ,
72 or if a
73 .Ar path prefix
74 was specified use the last component of
75 .Ar path prefix .
76 .Pp
77 The options for
78 .Cm got checkout
79 are as follows:
80 .Bl -tag -width Ds
81 .It Fl b Ar branch
82 Check out files from the specified
83 .Ar branch .
84 If this option is not specified, a branch resolved via the repository's HEAD
85 reference will be used.
86 .It Fl c Ar commit
87 Check out files from the specified
88 .Ar commit .
89 If this option is not specified, the most recent commit on the selected
90 branch will be used.
91 .It Fl p Ar path-prefix
92 Restrict the work tree to a subset of the repository's tree hierarchy.
93 Only files beneath the specified
94 .Ar path-prefix
95 will be checked out.
96 .El
97 .It Cm update [ Fl b Ar branch ] [ Fl c Ar commit ] [ Ar path ]
98 Update an existing work tree to a different commit.
99 Show the status of each affected file, using the following status codes:
100 .Bl -column YXZ description
101 .It U Ta file was updated and contained no local changes
102 .It G Ta file was updated and local changes were merged cleanly
103 .It C Ta file was updated and conflicts occurred during merge
104 .It D Ta file was deleted
105 .It A Ta new file was added
106 .It ~ Ta versioned file is obstructed by a non-regular file
107 .It ! Ta a missing versioned file was restored
108 .El
109 .Pp
110 If a
111 .Ar path
112 is specified, restrict the update operation to files at or within this path.
113 The path is required to exist in the update operation's target commit.
114 Files in the work tree outside this path will remain unchanged and will
115 retain their previously recorded base commit.
116 Some
117 .Nm
118 commands may refuse to run while the work tree contains files from
119 multiple base commits.
120 The base commit of such a work tree can be made consistent by running
121 .Cm got update
122 across the entire work tree.
123 Specifying a
124 .Ar path
125 is incompatible with the
126 .Fl b
127 option.
128 .Pp
129 The options for
130 .Cm got update
131 are as follows:
132 .Bl -tag -width Ds
133 .It Fl b Ar branch
134 Switch the work tree's branch reference to the specified
135 .Ar branch
136 before updating the work tree.
137 This option requires that all paths in the work tree are updated.
138 .It Fl c Ar commit
139 Update the work tree to the specified
140 .Ar commit .
141 The expected argument is a SHA1 hash which corresponds to a commit object.
142 If this option is not specified, the most recent commit on the work tree's
143 branch will be used.
144 .El
145 .It Cm status [ Ar path ]
146 Show the current modification status of files in a work tree,
147 using the following status codes:
148 .Bl -column YXZ description
149 .It M Ta modified file
150 .It A Ta file scheduled for addition in next commit
151 .It D Ta file scheduled for deletion in next commit
152 .It C Ta modified or added file which contains merge conflicts
153 .It ! Ta versioned file was expected on disk but is missing
154 .It ~ Ta versioned file is obstructed by a non-regular file
155 .It ? Ta unversioned item not tracked by
156 .Nm
157 .El
158 .Pp
159 If a
160 .Ar path
161 is specified, only show modifications within this path.
162 .It Cm log [ Fl b ] [ Fl c Ar commit ] [ Fl C Ar number ] [ Fl l Ar N ] [ Fl p ] [ Fl r Ar repository-path ] [ path ]
163 Display history of a repository.
164 If a
165 .Ar path
166 is specified, show only commits which modified this path.
167 .Pp
168 The options for
169 .Cm got log
170 are as follows:
171 .Bl -tag -width Ds
172 .It Fl b
173 Show the linear line of history of the current branch.
174 This option restricts history traversal to the first parent of each commit.
175 Commits which the branch was based on and merge commits which affected the
176 branch will be shown, but individual commits created on parallel branches
177 will be omitted.
178 .It Fl c Ar commit
179 Start traversing history at the specified
180 .Ar commit .
181 The expected argument is the name of a branch or a SHA1 hash which corresponds
182 to a commit object.
183 If this option is not specified, default to the work tree's current branch
184 if invoked in a work tree, or to the repository's HEAD reference.
185 .It Fl C Ar number
186 Set the number of context lines shown in diffs with
187 .Fl p .
188 By default, 3 lines of context are shown.
189 .It Fl l Ar N
190 Limit history traversal to a given number of commits.
191 .It Fl p
192 Display the patch of modifications made in each commit.
193 .It Fl r Ar repository-path
194 Use the repository at the specified path.
195 If not specified, assume the repository is located at or above the current
196 working directory.
197 If this directory is a
198 .Nm
199 work tree, use the repository path associated with this work tree.
200 .El
201 .It Cm diff [ Fl C Ar number ] [ Fl r Ar repository-path ] [ Ar object1 Ar object2 | Ar path ]
202 When invoked within a work tree with less than two arguments, display
203 uncommitted changes in the work tree.
204 If a
205 .Ar path
206 is specified, only show changes within this path.
207 .Pp
208 If two arguments are provided, treat each argument as a reference,
209 or a SHA1 hash, which corresponds to an object in the repository,
210 and display differences between these objects.
211 Both objects must be of the same type (blobs, trees, or commits).
212 .Pp
213 The options for
214 .Cm got diff
215 are as follows:
216 .Bl -tag -width Ds
217 .It Fl C Ar number
218 Set the number of context lines shown in the diff.
219 By default, 3 lines of context are shown.
220 .It Fl r Ar repository-path
221 Use the repository at the specified path.
222 If not specified, assume the repository is located at or above the current
223 working directory.
224 If this directory is a
225 .Nm
226 work tree, use the repository path associated with this work tree.
227 .El
228 .It Cm blame [ Fl c Ar commit ] [ Fl r Ar repository-path ] Ar path
229 Display line-by-line history of a file at the specified path.
230 .Pp
231 The options for
232 .Cm got blame
233 are as follows:
234 .Bl -tag -width Ds
235 .It Fl c Ar commit
236 Start traversing history at the specified
237 .Ar commit .
238 The expected argument is the name of a branch or a SHA1 hash which corresponds
239 to a commit object.
240 .It Fl r Ar repository-path
241 Use the repository at the specified path.
242 If not specified, assume the repository is located at or above the current
243 working directory.
244 If this directory is a
245 .Nm
246 work tree, use the repository path associated with this work tree.
247 .El
248 .It Cm tree [ Fl c Ar commit ] [ Fl r Ar repository-path ] [ Fl i ] [ Fl R] [ Ar path ]
249 Display a listing of files and directories at the specified
250 directory path in the repository.
251 Entries shown in this listing may carry one of the following trailing
252 annotations:
253 .Bl -column YXZ description
254 .It / Ta entry is a directory
255 .It * Ta entry is an executable file
256 .El
257 .Pp
258 If no
259 .Ar path
260 is specified, list the repository path corresponding to the current
261 directory of the work tree, or the root directory of the repository
262 if there is no work tree.
263 .Pp
264 The options for
265 .Cm got tree
266 are as follows:
267 .Bl -tag -width Ds
268 .It Fl c Ar commit
269 List files and directories as they appear in the specified
270 .Ar commit .
271 The expected argument is the name of a branch or a SHA1 hash which corresponds
272 to a commit object.
273 .It Fl r Ar repository-path
274 Use the repository at the specified path.
275 If not specified, assume the repository is located at or above the current
276 working directory.
277 If this directory is a
278 .Nm
279 work tree, use the repository path associated with this work tree.
280 .It Fl i
281 Show object IDs of files (blob objects) and directories (tree objects).
282 .It Fl R
283 Recurse into sub-directories in the repository.
284 .El
285 .It Cm ref [ Fl r Ar repository-path ] [ Fl l ] [ Fl d Ar name ] [ Ar name Ar target ]
286 Manage references in a repository.
287 .Pp
288 If no options are passed, expect two arguments and attempt to create,
289 or update, the reference with the given
290 .Ar name ,
291 and make it point at the given
292 .Ar target .
293 The target may be a SHA1 hash which corresponds to an existing object ID
294 in the repository, or an existing reference which will be resolved to an
295 object ID.
296 .Pp
297 The options for
298 .Cm got ref
299 are as follows:
300 .Bl -tag -width Ds
301 .It Fl r Ar repository-path
302 Use the repository at the specified path.
303 If not specified, assume the repository is located at or above the current
304 working directory.
305 If this directory is a
306 .Nm
307 work tree, use the repository path associated with this work tree.
308 .It Fl l
309 List all existing references in the repository.
310 .It Fl d Ar name
311 Delete the reference with the specified name from the repository.
312 .El
313 .It Cm add Ar file-path ...
314 Schedule unversioned files in a work tree for addition to the
315 repository in the next commit.
316 .It Cm rm Ar file-path ...
317 Remove versioned files from a work tree and schedule them for deletion
318 from the repository in the next commit.
319 .Pp
320 The options for
321 .Cm got rm
322 are as follows:
323 .Bl -tag -width Ds
324 .It Fl f
325 Perform the operation even if a file contains uncommitted modifications.
326 .El
327 .It Cm revert Ar file-path ...
328 Revert any uncommited changes in files at the specified paths.
329 File contents will be overwritten with those contained in the
330 work tree's base commit. There is no way to bring discarded
331 changes back after
332 .Cm got revert !
333 .Pp
334 If a file was added with
335 .Cm got add
336 it will become an unversioned file again.
337 If a file was deleted with
338 .Cm got rm
339 it will be restored.
340 .It Cm commit [ Fl m Ar msg ] [ file-path ]
341 Create a new commit in the repository from local changes in a work tree
342 and use this commit as the new base commit for the work tree.
343 .Pp
344 Show the status of each affected file, using the following status codes:
345 .Bl -column YXZ description
346 .It M Ta modified file
347 .It D Ta file was deleted
348 .It A Ta new file was added
349 .El
350 .Pp
351 Files without local changes will retain their previously recorded base
352 commit.
353 Some
354 .Nm
355 commands may refuse to run while the work tree contains files from
356 multiple base commits.
357 The base commit of such a work tree can be made consistent by running
358 .Cm got update
359 across the entire work tree.
360 .Pp
361 The
362 .Cm got commit
363 command requires the
364 .Ev GOT_AUTHOR
365 environment variable to be set.
366 .Pp
367 The options for
368 .Cm got commit
369 are as follows:
370 .Bl -tag -width Ds
371 .It Fl m Ar msg
372 Use the specified log message when creating the new commit.
373 Without the
374 .Fl m
375 option,
376 .Cm got commit
377 opens a temporary file in an editor where a log message can be written.
378 .El
379 .It Cm cherrypick Ar commit
380 Merge changes from a single
381 .Ar commit
382 into the work tree.
383 The specified
384 .Ar commit
385 must be on a different branch than the work tree's base commit.
386 The expected argument is a reference or a SHA1 hash which corresponds to
387 a commit object.
388 .Pp
389 Show the status of each affected file, using the following status codes:
390 .Bl -column YXZ description
391 .It G Ta file was merged
392 .It C Ta file was merged and conflicts occurred during merge
393 .It ! Ta changes destined for a missing file were not merged
394 .It D Ta file was deleted
395 .It d Ta file's deletion was obstructed by local modifications
396 .It A Ta new file was added
397 .It ~ Ta changes destined for a non-regular file were not merged
398 .El
399 .Pp
400 The merged changes will appear as local changes in the work tree, which
401 may be viewed with
402 .Cm got diff ,
403 amended manually or with further
404 .Cm got cherrypick
405 comands,
406 committed with
407 .Cm got commit ,
408 or discarded again with
409 .Cm got revert .
410 .Pp
411 .Cm got cherrypick
412 will refuse to run if certain preconditions are not met.
413 If the work tree contains multiple base commits it must first be updated
414 to a single base commit with
415 .Cm got update .
416 If the work tree already contains files with merge conflicts, these
417 conflicts must be resolved first.
418 .It Cm backout Ar commit
419 Reverse-merge changes from a single
420 .Ar commit
421 into the work tree.
422 The specified
423 .Ar commit
424 must be on the same branch as the work tree's base commit.
425 The expected argument is a reference or a SHA1 hash which corresponds to
426 a commit object.
427 .Pp
428 Show the status of each affected file, using the following status codes:
429 .Bl -column YXZ description
430 .It G Ta file was merged
431 .It C Ta file was merged and conflicts occurred during merge
432 .It ! Ta changes destined for a missing file were not merged
433 .It D Ta file was deleted
434 .It d Ta file's deletion was obstructed by local modifications
435 .It A Ta new file was added
436 .It ~ Ta changes destined for a non-regular file were not merged
437 .El
438 .Pp
439 The reverse-merged changes will appear as local changes in the work tree,
440 which may be viewed with
441 .Cm got diff ,
442 amended manually or with further
443 .Cm got cherrypick
444 comands,
445 committed with
446 .Cm got commit ,
447 or discarded again with
448 .Cm got revert .
449 .Pp
450 .Cm got backout
451 will refuse to run if certain preconditions are not met.
452 If the work tree contains multiple base commits it must first be updated
453 to a single base commit with
454 .Cm got update .
455 If the work tree already contains files with merge conflicts, these
456 conflicts must be resolved first.
457 .El
458 .Sh ENVIRONMENT
459 .Bl -tag -width GOT_AUTHOR
460 .It Ev GOT_AUTHOR
461 The author's name and email address for
462 .Cm got commit ,
463 for example:
464 .An Stefan Sperling Aq Mt stsp@openbsd.org
465 .It Ev VISUAL, Ev EDITOR
466 The editor spawned by
467 .Cm got commit .
468 .El
469 .Sh EXIT STATUS
470 .Ex -std got
471 .Sh EXAMPLES
472 .Pp
473 Clone an existing Git repository for use with
474 .Nm .
475 This step currently requires
476 .Xr git 1 :
477 .Pp
478 .Dl $ cd /var/git/
479 .Dl $ git clone --bare https://github.com/openbsd/src.git
480 .Pp
481 Check out a work tree from this Git repository to /usr/src:
482 .Pp
483 .Dl $ got checkout /var/git/src.git /usr/src
484 .Pp
485 View local changes in a work tree directory:
486 .Pp
487 .Dl $ got status
488 .Dl $ got diff | less
489 .Pp
490 In a work tree or a git repository directory, list all branch references:
491 .Pp
492 .Dl $ got ref -l | grep ^refs/heads
493 .Pp
494 In a work tree or a git repository directory, create a new branch called
495 .Dq unified-buffer-cache
496 which is forked off the
497 .Dq master
498 branch:
499 .Pp
500 .Dl $ got ref refs/heads/unified-buffer-cache refs/heads/master
501 .Pp
502 Switch an existing work tree to the branch
503 .Dq unified-buffer-cache .
504 Local changes in the work tree will be preserved and merged if necessary:
505 .Pp
506 .Dl $ got update -b unified-buffer-cache
507 .Pp
508 Create a new commit from local changes in a work tree directory.
509 This new commit will become the head commit of the work tree's current branch:
510 .Pp
511 .Dl $ got commit
512 .Pp
513 In a work tree or a git repository directory, view changes committed in
514 the 3 most recent commits to the work tree's branch, or the branch resolved
515 via the repository's HEAD reference, respectively:
516 .Pp
517 .Dl $ got log -p -l 3 -b
518 .Pp
519 Add new files and remove obsolete files in a work tree directory:
520 .Pp
521 .Dl $ got add sys/uvm/uvm_ubc.c
522 .Dl $ got rm sys/uvm/uvm_vnode.c
523 .Pp
524 Create a new commit from local changes in a work tree directory
525 with a pre-defined log message.
526 .Pp
527 .Dl $ got commit -m 'unify the buffer cache'
528 .Pp
529 Update any work tree checked out from the
530 .Dq unified-buffer-cache
531 branch to the latest commit on this branch:
532 .Pp
533 .Dl $ got update
534 .Pp
535 Fetch new upstream commits into the local repository's master branch:
536 .Pp
537 .Dl $ cd /var/git/src.git
538 .Dl $ git fetch origin master:master
539 .Pp
540 Rebase the
541 .Dq unified-buffer-cache
542 branch on top of the new head commit of the
543 .Dq master
544 branch.
545 This step currently requires
546 .Xr git 1 :
547 .Pp
548 .Dl $ git clone /var/git/src.git ~/src-git-wt
549 .Dl $ cd ~/src-git-wt
550 .Dl $ git checkout unified-buffer-cache
551 .Dl $ git rebase master
552 .Dl $ git push -f
553 .Pp
554 Update the work tree to the newly rebased
555 .Dq unified-buffer-cache
556 branch:
557 .Pp
558 .Dl $ got update -b unified-buffer-cache
559 .Sh SEE ALSO
560 .Xr git-repository 5
561 .Xr got-worktree 5
562 .Sh AUTHORS
563 .An Stefan Sperling Aq Mt stsp@openbsd.org
564 .An Martin Pieuchot Aq Mt mpi@openbsd.org
565 .An joshua stein Aq Mt jcs@openbsd.org
566 .Sh CAVEATS
567 .Nm
568 is a work-in-progress and many commands remain to be implemented.
569 At present, the user has to fall back on
570 .Xr git 1
571 to perform many basic tasks.
572 .Pp
573 When working against a repository created with
574 .Dq git clone --bare ,
575 local commits to the
576 .Dq master
577 branch are discouraged, for now, if changes committed to the upstream
578 repository need to be tracked.
579 See the EXAMPLES section.