Go dependency management tool experiment (deprecated)
Перейти к файлу
Matthew Cale eed36df857 Grammar and missing word fixes
Note: I also inserted the word "be" in another PR please note that this is a new instance of an omission of the same word
2019-01-22 09:34:17 -08:00
.github docs: hash-inputs is gone, nix it from PR template 2018-07-11 02:58:46 -04:00
cmd/dep cmd/dep: disable GOCACHE=off env var 2019-01-21 21:59:19 -08:00
docs Grammar and missing word fixes 2019-01-22 09:34:17 -08:00
gps gps/pkgtree: fix linter for +build declaration 2019-01-21 21:59:19 -08:00
hack hack: ignore Travis failures 2019-01-21 21:59:19 -08:00
internal all: fix errors reported by lint 2019-01-21 21:59:19 -08:00
testdata dep: Update scads of tests 2018-07-03 19:14:30 -04:00
vendor dep: Update go-toml to v1.2.0 2018-07-11 02:52:21 -04:00
website v0.5.0 release! 2018-07-26 00:33:46 -04:00
.codeclimate.yml CI: trying to disable bad codeclimate checks 2018-01-03 09:56:08 -05:00
.gitattributes Prevent problems comparing golden files on Windows 2017-02-20 23:45:11 -05:00
.gitignore Fixes and cleanup to build script 2018-01-27 10:23:49 -08:00
.travis.yml .travis.yml: only one YAML declaration 2019-01-21 22:40:58 -08:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CHANGELOG.md docs: Update noverify info about path preservation 2018-09-06 09:31:15 -04:00
CODE_OF_CONDUCT.md (To Squash) Moving CODE_OF_CONDUCT.md ../ 2017-04-25 09:11:55 -06:00
CONTRIBUTING.md Update CONTRIBUTING.md 2018-05-05 00:53:27 -07:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
Gopkg.lock dep: Don't try to look up known-removed projects 2018-07-11 09:28:34 -04:00
Gopkg.toml Bump github.com/Masterminds/semver 2018-04-02 21:36:34 -05:00
LICENSE Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
MAINTAINERS.md update CODEOWNERS and MAINTAINERS with more @jmank88 2018-02-07 08:21:32 -06:00
Makefile ci: Use dep check to check dep 2018-07-20 19:03:48 -07:00
PATENTS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
README.md v0.5.0 release! 2018-07-26 00:33:46 -04:00
analyzer.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
analyzer_notwindows_test.go Add Windows specific function for making a file unreadable during tests. 2017-05-02 02:34:40 -04:00
analyzer_test.go dep: add prune options to manifests 2017-11-17 10:25:07 +03:00
analyzer_windows_test.go Add Windows specific function for making a file unreadable during tests. 2017-05-02 02:34:40 -04:00
appveyor.yml increment CI go versions from 1.8.x/1.9.x/tip to 1.9.x/"1.10"/tip 2018-02-19 14:13:58 -06:00
context.go context.go: Clean GOPATH with filepath.Clean() before returning 2018-07-18 14:45:19 +02:00
context_test.go context.go: Clean GOPATH with filepath.Clean() before returning 2018-07-18 14:45:19 +02:00
doc.go improve godoc; replace Loggers with embeded fields; refactor Ctx api 2017-06-07 08:46:44 -05:00
install.sh Removes "echo" statement introduced with commit 918c75 2018-07-11 22:02:52 -07:00
lock.go dep: Update scads of tests 2018-07-03 19:14:30 -04:00
lock_test.go dep: Get DeltaWriter into a working state 2018-07-03 01:41:47 -04:00
manifest.go dep: Introduce noverify field to Gopkg.toml 2018-07-24 00:16:45 -04:00
manifest_test.go [FIX] Cleanup code 2018-02-11 15:20:44 +03:00
project.go dep: Introduce dep check subcommand 2018-07-12 00:51:18 -04:00
project_test.go dep: Update scads of tests 2018-07-03 19:14:30 -04:00
test_project_context_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
txn_writer.go dep: Make noverify preserve excess vendor paths 2018-09-06 00:08:18 -04:00
txn_writer_test.go dep: Make SafeWriter use status map for OnChanged 2018-07-20 17:21:18 -07:00

README.md

Build Status Windows Build Status

Dep

dep is a dependency management tool for Go. It requires Go 1.9 or newer to compile.

dep was the "official experiment." The Go toolchain, as of 1.11, has (experimentally) adopted an approach that sharply diverges from dep. As a result, we are continuing development of dep, but gearing work primarily towards the development of an alternative prototype for versioning behavior in the toolchain.

For guides and reference materials about dep, see the documentation.

Installation

It is strongly recommended that you use a released version. Release binaries are available on the releases page.

On MacOS you can install or upgrade to the latest released version with Homebrew:

$ brew install dep
$ brew upgrade dep

On other platforms you can use the install.sh script:

$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh

It will install into your $GOPATH/bin directory by default or any other directory you specify using the INSTALL_DIRECTORY environment variable.

If your platform is not supported, you'll need to build it manually or let the team know and we'll consider adding your platform to the release builds.

If you're interested in hacking on dep, you can install via go get:

go get -u github.com/golang/dep/cmd/dep

Feedback

Feedback is greatly appreciated. At this stage, the maintainers are most interested in feedback centered on the user experience (UX) of the tool. Do you have workflows that the tool supports well, or doesn't support at all? Do any of the commands have surprising effects, output, or results? Let us know by filing an issue, describing what you did or wanted to do, what you expected to happen, and what actually happened.

Contributing

Contributions are greatly appreciated. The maintainers actively manage the issues list, and try to highlight issues suitable for newcomers. The project follows the typical GitHub pull request model. See CONTRIBUTING.md for more details. Before starting any work, please either comment on an existing issue, or file a new one.