Blame


1 5c860e29 2018-03-12 stsp .\"
2 5c860e29 2018-03-12 stsp .\" Copyright (c) 2017 Martin Pieuchot
3 5c860e29 2018-03-12 stsp .\"
4 5c860e29 2018-03-12 stsp .\" Permission to use, copy, modify, and distribute this software for any
5 5c860e29 2018-03-12 stsp .\" purpose with or without fee is hereby granted, provided that the above
6 5c860e29 2018-03-12 stsp .\" copyright notice and this permission notice appear in all copies.
7 5c860e29 2018-03-12 stsp .\"
8 5c860e29 2018-03-12 stsp .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5c860e29 2018-03-12 stsp .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5c860e29 2018-03-12 stsp .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5c860e29 2018-03-12 stsp .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5c860e29 2018-03-12 stsp .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5c860e29 2018-03-12 stsp .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5c860e29 2018-03-12 stsp .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5c860e29 2018-03-12 stsp .\"
16 5c860e29 2018-03-12 stsp .Dd $Mdocdate$
17 5c860e29 2018-03-12 stsp .Dt GOT 1
18 5c860e29 2018-03-12 stsp .Os
19 5c860e29 2018-03-12 stsp .Sh NAME
20 5c860e29 2018-03-12 stsp .Nm got
21 285dc8a4 2018-03-13 stsp .Nd distributed version control system
22 5c860e29 2018-03-12 stsp .Sh SYNOPSIS
23 0bb8a95e 2018-03-12 stsp .Nm
24 5c860e29 2018-03-12 stsp .Ar command
25 1b6b95a8 2018-03-12 stsp .Op Fl h
26 5c860e29 2018-03-12 stsp .Op Ar arg ...
27 5c860e29 2018-03-12 stsp .Sh DESCRIPTION
28 5c860e29 2018-03-12 stsp .Nm
29 285dc8a4 2018-03-13 stsp is a distributed version control system which prioritizes ease of use
30 285dc8a4 2018-03-13 stsp and simplicity over flexibility.
31 5c860e29 2018-03-12 stsp .Pp
32 285dc8a4 2018-03-13 stsp .Nm
33 285dc8a4 2018-03-13 stsp stores the history of files tracked in version control in a repository
34 285dc8a4 2018-03-13 stsp which happens to use the same on-disk format as the so-called
35 285dc8a4 2018-03-13 stsp .Dq bare
36 285dc8a4 2018-03-13 stsp repositories created by the popular Git version control system.
37 285dc8a4 2018-03-13 stsp This repository format is described in
38 285dc8a4 2018-03-13 stsp .Xr got-repository 5 .
39 285dc8a4 2018-03-13 stsp .Pp
40 285dc8a4 2018-03-13 stsp Files managed by
41 285dc8a4 2018-03-13 stsp .Nm
42 285dc8a4 2018-03-13 stsp can be checked out from the repository for modification.
43 285dc8a4 2018-03-13 stsp Checked out files are stored in a
44 285dc8a4 2018-03-13 stsp .Em work tree
45 285dc8a4 2018-03-13 stsp which is placed at an arbitrary directory in the filesystem hierarchy.
46 285dc8a4 2018-03-13 stsp The format of a
47 285dc8a4 2018-03-13 stsp .Nm
48 285dc8a4 2018-03-13 stsp work tree is described in
49 285dc8a4 2018-03-13 stsp .Xr got-worktree 5 .
50 285dc8a4 2018-03-13 stsp .Pp
51 285dc8a4 2018-03-13 stsp .Nm
52 285dc8a4 2018-03-13 stsp provides global and command-specific options.
53 285dc8a4 2018-03-13 stsp Global options must preceed the command name, and are as follows:
54 1b6b95a8 2018-03-12 stsp .Bl -tag -width tenletters
55 1b6b95a8 2018-03-12 stsp .It Fl h
56 1b6b95a8 2018-03-12 stsp Display usage information.
57 1b6b95a8 2018-03-12 stsp .El
58 1b6b95a8 2018-03-12 stsp .Pp
59 5c860e29 2018-03-12 stsp The commands are as follows:
60 0bb8a95e 2018-03-12 stsp .Bl -tag -width checkout
61 0bb8a95e 2018-03-12 stsp .It Cm checkout
62 0bb8a95e 2018-03-12 stsp Copy files from a repository into a new work tree.
63 0bb8a95e 2018-03-12 stsp .\".It Cm status
64 0bb8a95e 2018-03-12 stsp .\"Show current status of files.
65 5c860e29 2018-03-12 stsp .It Cm log
66 5c860e29 2018-03-12 stsp Display history of the repository.
67 5c860e29 2018-03-12 stsp .El
68 5c860e29 2018-03-12 stsp .Sh EXIT STATUS
69 5c860e29 2018-03-12 stsp .Ex -std got
70 5c860e29 2018-03-12 stsp .Sh SEE ALSO
71 285dc8a4 2018-03-13 stsp .Xr got-repository 5
72 285dc8a4 2018-03-13 stsp .Xr got-worktree 5