Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1405)

Delta Between Two Patch Sets: src/cmd/go/doc.go

Issue 12566046: code review 12566046: cmd/go: add -t flag to 'go get' to download test depend... (Closed)
Left Patch Set: diff -r d7db8c804ffa https://code.google.com/p/go Created 10 years, 7 months ago
Right Patch Set: diff -r 2bf4cf823da3 https://code.google.com/p/go Created 10 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | src/cmd/go/get.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh. 5 // DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh.
6 // Edit the documentation in other files and rerun mkdoc.sh to generate this one . 6 // Edit the documentation in other files and rerun mkdoc.sh to generate this one .
7 7
8 /* 8 /*
9 Go is a tool for managing Go source code. 9 Go is a tool for managing Go source code.
10 10
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 Get downloads and installs the packages named by the import paths, 241 Get downloads and installs the packages named by the import paths,
242 along with their dependencies. 242 along with their dependencies.
243 243
244 The -d flag instructs get to stop after downloading the packages; that is, 244 The -d flag instructs get to stop after downloading the packages; that is,
245 it instructs get not to install the packages. 245 it instructs get not to install the packages.
246 246
247 The -fix flag instructs get to run the fix tool on the downloaded packages 247 The -fix flag instructs get to run the fix tool on the downloaded packages
248 before resolving dependencies or building the code. 248 before resolving dependencies or building the code.
249 249
250 The -t flag instructs get to download the packages required to build 250 The -t flag instructs get to also download the packages required to build
251 the tests for the specified packages. 251 the tests for the specified packages.
252 252
253 The -u flag instructs get to use the network to update the named packages 253 The -u flag instructs get to use the network to update the named packages
254 and their dependencies. By default, get uses the network to check out 254 and their dependencies. By default, get uses the network to check out
255 missing packages but does not use it to look for updates to existing packages. 255 missing packages but does not use it to look for updates to existing packages.
256 256
257 Get also accepts all the flags in the 'go build' and 'go install' commands, 257 Get also accepts all the flags in the 'go build' and 'go install' commands,
258 to control the installation. See 'go help build'. 258 to control the installation. See 'go help build'.
259 259
260 When checking out or updating a package, get looks for a branch or tag 260 When checking out or updating a package, get looks for a branch or tag
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 example function, at least one other function, type, variable, or constant 875 example function, at least one other function, type, variable, or constant
876 declaration, and no test or benchmark functions. 876 declaration, and no test or benchmark functions.
877 877
878 See the documentation of the testing package for more information. 878 See the documentation of the testing package for more information.
879 879
880 880
881 */ 881 */
882 package main 882 package main
883 883
884 // NOTE: cmdDoc is in fmt.go. 884 // NOTE: cmdDoc is in fmt.go.
LEFTRIGHT
« no previous file | src/cmd/go/get.go » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b