File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
+ // Package vcs exposes functions for resolving import paths
6
+ // and using version control systems (like Mercurial, Git, or Subversion),
7
+ // which can be used to implement behavior consistent with
8
+ // the standard "go get" command.
9
+ //
10
+ // This package is a copy of internal code in package cmd/go/internal/get,
11
+ // modified to make the identifiers exported. It's provided here
12
+ // for developers who want to write tools with similar semantics.
13
+ // It needs to be manually kept in sync with upstream when changes are
14
+ // done to cmd/go/internal/get, see https://golang.org/issues/11490.
15
+ //
5
16
package vcs // import "golang.org/x/tools/go/vcs"
6
17
7
18
import (
You can’t perform that action at this time.
0 commit comments