• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H13-Jun-2019-7832

cmd/dep/H13-Jun-2019-12,9389,749

docs/H13-Jun-2019-2,0981,364

gps/H13-Jun-2019-31,13223,281

hack/H13-Jun-2019-387277

internal/H13-Jun-2019-7,8146,031

testdata/H13-Jun-2019-162129

vendor/H13-Jun-2019-266,785221,360

website/H03-May-2022-4,5334,160

.codeclimate.ymlH A D13-Jun-2019712 3837

.gitattributesH A D13-Jun-201980 32

.gitignoreH A D13-Jun-2019344 1211

.travis.ymlH A D13-Jun-20194.6 KiB120118

AUTHORSH A D13-Jun-2019173 43

CHANGELOG.mdH A D13-Jun-201912.3 KiB213161

CODE_OF_CONDUCT.mdH A D13-Jun-20193.2 KiB7556

CONTRIBUTING.mdH A D13-Jun-20198.7 KiB12391

CONTRIBUTORSH A D13-Jun-2019170 43

Gopkg.lockH A D03-May-20224.3 KiB149131

Gopkg.tomlH A D03-May-2022602 3325

LICENSEH A D13-Jun-20191.4 KiB2824

MAINTAINERS.mdH A D13-Jun-2019454 1815

MakefileH A D13-Jun-2019786 3727

PATENTSH A D13-Jun-20191.3 KiB2320

README.mdH A D13-Jun-20193.2 KiB7855

analyzer.goH A D13-Jun-20191.3 KiB5434

analyzer_notwindows_test.goH A D13-Jun-2019428 2514

analyzer_test.goH A D13-Jun-20192.7 KiB11479

analyzer_windows_test.goH A D13-Jun-2019979 3424

appveyor.ymlH A D13-Jun-2019789 3525

context.goH A D13-Jun-201910.8 KiB362238

context_test.goH A D13-Jun-201916 KiB599489

doc.goH A D13-Jun-2019233 71

install.shH A D13-Jun-20195.1 KiB179131

lock.goH A D13-Jun-20197 KiB260192

lock_test.goH A D13-Jun-20194.5 KiB180156

manifest.goH A D13-Jun-201918.9 KiB657509

manifest_test.goH A D13-Jun-201919.4 KiB822672

project.goH A D13-Jun-20199.6 KiB303181

project_test.goH A D13-Jun-20196.6 KiB224155

test_project_context_test.goH A D13-Jun-20195.6 KiB169114

txn_writer.goH A D13-Jun-201923.6 KiB803579

txn_writer_test.goH A D13-Jun-201913.4 KiB472374

README.md

1<p align="center"><img src="docs/assets/DigbyShadows.png" width="360"></p>
2<p align="center">
3  <a href="https://travis-ci.org/golang/dep"><img src="https://travis-ci.org/golang/dep.svg?branch=master" alt="Build Status"></img></a>
4  <a href="https://ci.appveyor.com/project/golang/dep"><img src="https://ci.appveyor.com/api/projects/status/github/golang/dep?svg=true&branch=master&passingText=Windows%20-%20OK&failingText=Windows%20-%20failed&pendingText=Windows%20-%20pending" alt="Windows Build Status"></a>
5  <a href="https://goreportcard.com/report/github.com/golang/dep"><img src="https://goreportcard.com/badge/github.com/golang/dep" /></a>
6</p>
7
8<i>Would you like to see your company name here? <a
9href="https://github.com/golang/dep/issues/2165">We're looking for a stable source of
10funding.</a></i>
11
12## Dep
13
14`dep` is a dependency management tool for Go. It requires Go 1.9 or newer to compile.
15
16`dep` was the "official experiment." The Go toolchain, as of 1.11, has adopted
17an approach that sharply diverges from `dep`. As a result, we are continuing
18development of `dep`, but gearing work primarily towards the development of an
19alternative prototype for versioning behavior in the toolchain.
20
21For guides and reference materials about `dep`, see [the
22documentation](https://golang.github.io/dep).
23
24## Installation
25
26You should use an officially released version. Release binaries are available on
27the [releases](https://github.com/golang/dep/releases) page.
28
29On MacOS you can install or upgrade to the latest released version with Homebrew:
30
31```sh
32$ brew install dep
33$ brew upgrade dep
34```
35
36On Debian platforms you can install or upgrade to the latest version with apt-get:
37
38```sh
39$ sudo apt-get install go-dep
40```
41
42On Windows, you can download a tarball from
43[go.equinox.io](https://go.equinox.io/github.com/golang/dep/cmd/dep).
44
45On other platforms you can use the `install.sh` script:
46
47```sh
48$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
49```
50
51It will install into your `$GOPATH/bin` directory by default or any other directory you specify using the `INSTALL_DIRECTORY` environment variable.
52
53If your platform is not supported, you'll need to build it manually or let the team know and we'll consider adding your platform
54to the release builds.
55
56If you're interested in getting the source code, or hacking on `dep`, you can
57install via `go get`:
58
59```sh
60go get -u github.com/golang/dep/cmd/dep
61```
62
63## Feedback
64
65Feedback is greatly appreciated.
66At this stage, the maintainers are most interested in feedback centered on the user experience (UX) of the tool.
67Do you have workflows that the tool supports well, or doesn't support at all?
68Do any of the commands have surprising effects, output, or results?
69Let us know by filing an issue, describing what you did or wanted to do, what you expected to happen, and what actually happened.
70
71## Contributing
72
73Contributions are greatly appreciated.
74The maintainers actively manage the issues list, and try to highlight issues suitable for newcomers.
75The project follows the typical GitHub pull request model.
76See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
77Before starting any work, please either comment on an existing issue, or file a new one.
78