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 5c860e29 2018-03-12 stsp .Nd simple version control system
22 5c860e29 2018-03-12 stsp .Sh SYNOPSIS
23 5c860e29 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 The
29 5c860e29 2018-03-12 stsp .Nm
30 5c860e29 2018-03-12 stsp utility is used to manage
31 5c860e29 2018-03-12 stsp .Xr git 5
32 5c860e29 2018-03-12 stsp repositories.
33 5c860e29 2018-03-12 stsp It prioritizes ease of use and simplicity over flexibility.
34 5c860e29 2018-03-12 stsp .Pp
35 1b6b95a8 2018-03-12 stsp The options are as follows:
36 1b6b95a8 2018-03-12 stsp .Bl -tag -width tenletters
37 1b6b95a8 2018-03-12 stsp .It Fl h
38 1b6b95a8 2018-03-12 stsp Display usage information.
39 1b6b95a8 2018-03-12 stsp .El
40 1b6b95a8 2018-03-12 stsp .Pp
41 5c860e29 2018-03-12 stsp The commands are as follows:
42 5c860e29 2018-03-12 stsp .Bl -tag -width Ds
43 5c860e29 2018-03-12 stsp .It Cm status
44 5c860e29 2018-03-12 stsp Show current status of files.
45 5c860e29 2018-03-12 stsp .It Cm log
46 5c860e29 2018-03-12 stsp Display history of the repository.
47 5c860e29 2018-03-12 stsp .El
48 5c860e29 2018-03-12 stsp .Sh EXIT STATUS
49 5c860e29 2018-03-12 stsp .Ex -std got
50 5c860e29 2018-03-12 stsp .Sh SEE ALSO
51 5c860e29 2018-03-12 stsp .Xr git 5