Go dependency management tool experiment (deprecated)
Перейти к файлу
Sunny 42f17824d7
Merge pull request #1629 from shawnps/patch-2
Fix typos
2018-02-05 17:25:19 +05:30
.github Move gps package out of internal 2017-11-10 17:02:30 -08:00
cmd/dep Amend prune command line message to include doc link 2018-01-31 12:18:15 +00:00
docs Fix case of Gopkg.toml.md links in the docs 2018-01-30 08:08:33 -08:00
gps Fix typos 2018-02-05 15:53:08 +09:00
hack Fixes and cleanup to build script 2018-01-27 10:23:49 -08:00
internal Merge pull request #1544 from carolynvs/fix-update-all-golden-files 2018-01-22 22:03:37 +05:30
testdata prune: Introduce CascadingPruneOptions 2018-01-24 14:34:29 -05:00
vendor dep: Prune vendor using new pruning powers 2018-01-23 23:46:57 -05:00
website Update release notes link in v0.4.1 blog post 2018-01-25 06:23:09 -05: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 Merge pull request #1472 from dungeonmaster18/add-build 2017-12-21 14:29:43 -05:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CHANGELOG.md Fix formatting of issue references in v0.4.0 notes 2018-01-25 23:43:14 -05:00
CODE_OF_CONDUCT.md (To Squash) Moving CODE_OF_CONDUCT.md ../ 2017-04-25 09:11:55 -06:00
CONTRIBUTING.md Remove description about `dep prune` 2018-01-28 10:54:16 +09:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
Gopkg.lock upgrade github.com/jmank88/nuts to 0.3.0 2018-01-08 20:31:52 -06:00
Gopkg.toml upgrade github.com/jmank88/nuts to 0.3.0 2018-01-08 20:31:52 -06:00
LICENSE Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
MAINTAINERS.md add jmank88 to MAINTAINERS and CODEOWNERS for gps caching 2017-07-21 06:38:15 -05:00
PATENTS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
README.md Grammar fix for README.md 2018-01-29 09:36:13 -08: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 Move gps package out of internal 2017-11-10 17:02:30 -08:00
context.go do not create cachedir recursively 2017-12-08 09:02:18 +05:30
context_test.go do not create cachedir recursively 2017-12-08 09:02:18 +05:30
doc.go improve godoc; replace Loggers with embeded fields; refactor Ctx api 2017-06-07 08:46:44 -05:00
lock.go dep: Use new line-per-item behaviors from TOML lib 2017-12-18 09:18:13 -05:00
lock_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
manifest.go prune: fix docs copypasta: s/true/false/ 2018-01-24 18:02:11 -05:00
manifest_test.go prune: Decode directly from TOML types 2018-01-24 17:54:19 -05:00
project.go dep: Emit ptree from GetDirectDependencyNames() 2018-01-16 08:40:09 -08:00
project_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
test_project_context_test.go Move gps package out of internal 2017-11-10 17:02:30 -08:00
txn_writer.go prune: Remove spurious types, fix tests 2018-01-24 16:04:02 -05:00
txn_writer_test.go prune: Remove spurious types, fix tests 2018-01-24 16:04:02 -05:00

README.md

Build Status Windows Build Status

Dep

dep is a prototype dependency management tool for Go. It requires Go 1.8 or newer to compile. dep is safe for production use.

dep is the official experiment, but not yet the official tool. Check out the Roadmap for more on what this means!

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

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.