~ubuntu-branches/ubuntu/saucy/golang/saucy

« back to all changes in this revision

Viewing changes to debian/man/go.1

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý, Ondřej Surý, Michael Stapelberg
  • Date: 2012-06-28 12:14:15 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120628121415-w1b0076ixkarr1ml
[ Ondřej Surý ]
* Imported Upstream version 1.0.2
* Update Vcs fields to reflect new git repository location
* Kill get-orig-source, since 1.0.0, the tarballs can be downloaded
  from webpage

[ Michael Stapelberg ]
* golang-mode: use debian-pkg-add-load-path-item (Closes: #664802)
* Add manpages (Closes: #632964)
* Use updated pt.po from Pedro Ribeiro (Closes: #674958)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.\"                                      Hey, EMACS: -*- nroff -*-
 
2
.TH GO 1 "2012-05-13"
 
3
.\" Please adjust this date whenever revising the manpage.
 
4
.SH NAME
 
5
go \- tool for managing Go source code
 
6
.SH SYNOPSIS
 
7
.B go
 
8
.RI command
 
9
.RI [ arguments ]
 
10
.SH DESCRIPTION
 
11
The Go distribution includes a command, named \fBgo\fP, that automates the
 
12
downloading, building, installation, and testing of Go packages and commands.
 
13
.SH COMMANDS
 
14
Each command is documented in its own manpage. For example, the \fBbuild\fP
 
15
command is documented in \fBgo-build\fP(1). The commands are:
 
16
.TP
 
17
.B build
 
18
compile packages and dependencies
 
19
.TP
 
20
.B clean
 
21
remove object files
 
22
.TP
 
23
.B doc
 
24
run godoc on package sources
 
25
.TP
 
26
.B env
 
27
print Go environment information
 
28
.TP
 
29
.B fix
 
30
run go tool fix on packages
 
31
.TP
 
32
.B fmt
 
33
run gofmt on package sources
 
34
.TP
 
35
.B get
 
36
download and install packages and dependencies
 
37
.TP
 
38
.B install
 
39
compile and install packages and dependencies
 
40
.TP
 
41
.B list
 
42
list packages
 
43
.TP
 
44
.B run
 
45
compile and run Go program
 
46
.TP
 
47
.B test
 
48
test packages
 
49
.TP
 
50
.B tool
 
51
run specified go tool
 
52
.TP
 
53
.B version
 
54
print Go version
 
55
.TP
 
56
.B vet
 
57
run go tool vet on packages
 
58
.SH EXAMPLES
 
59
TODO
 
60
.SH SEE ALSO
 
61
.BR go-build (1),
 
62
.BR go-clean (1).
 
63
.SH AUTHOR
 
64
.PP
 
65
This manual page was written by Michael Stapelberg <stapelberg@debian.org>,
 
66
for the Debian project (and may be used by others).