Go dependency management tool experiment (deprecated)
Перейти к файлу
Carolyn Van Slyck d02eb6961e Extract version type matching into a single function 2017-03-09 13:28:46 -06:00
cmd/dep Respect dry-run flag during dep ensure 2017-03-09 13:28:42 -06:00
hack hack: update repo name 2017-02-21 20:15:57 -05:00
test Don't leave open test file handles open 2017-03-09 13:28:46 -06:00
testdata Split out SafeWriter bad input tests into 1 per scenario 2017-03-09 13:28:46 -06:00
vendor/github.com Bump minimum version of gps required 2017-03-03 11:08:34 -05:00
.gitattributes Prevent problems comparing golden files on Windows 2017-02-20 23:45:11 -05:00
.gitignore Moving to want/got pattern and adding unit test coverage 2017-02-12 23:52:17 -05:00
.travis.yml Add 1.8 support for travis / appveyor 2017-02-23 12:45:59 -05:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CONTRIBUTING.md Update README, CONTRIBUTING with roadmap 2017-03-07 06:22:36 -05:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
LICENSE Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
PATENTS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
README.md Update README, CONTRIBUTING with roadmap 2017-03-07 06:22:36 -05:00
analyzer.go Increasing coverage for lock and analyzer 2017-02-12 23:52:17 -05:00
analyzer_test.go Remove TestAnalyzerInfo() per feedback 2017-02-12 23:52:17 -05:00
appveyor.yml Add 1.8 support for travis / appveyor 2017-02-23 12:45:59 -05:00
context.go case-insensitive GOPATH 2017-02-21 01:19:15 -05:00
context_test.go remove needless generating files in test 2017-02-21 01:19:15 -05:00
fs.go Wrap fs errors to include a better message and callstack 2017-03-09 13:05:30 -06:00
fs_test.go Fix test issue after upstream merge 2017-02-12 23:52:17 -05:00
lock.go Extract version type matching into a single function 2017-03-09 13:28:46 -06:00
lock.json Bump minimum version of gps required 2017-03-03 11:08:34 -05:00
lock_test.go Don't leave open test file handles open 2017-03-09 13:28:46 -06:00
manifest.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
manifest.json Update to v0.14.0 of gps 2017-02-22 12:45:28 -05:00
manifest_test.go Don't leave open test file handles open 2017-03-09 13:28:46 -06:00
project.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
project_test.go Adding -update test flag for golden files 2017-02-12 23:52:17 -05:00
test_project_context_test.go Don't leave open test file handles open 2017-03-09 13:28:46 -06:00
txn_writer.go Respect dry-run flag during dep ensure 2017-03-09 13:28:42 -06:00
txn_writer_test.go Split out SafeWriter bad input tests into 1 per scenario 2017-03-09 13:28:46 -06:00

README.md

Dep

Linux: Build Status | Windows: Build status

Dep is a prototype dependency management tool. It requires Go 1.7 or newer to compile.

dep is NOT an official tool. Yet. Check out the Roadmap!

Current status

Alpha. Functionality is known to be broken, missing or incomplete. Command and file format changes are still planned. The repository is open to solicit feedback and contributions from the community. Please see below for feedback and contribution guidelines.

Context

Usage

Get the tool via

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

Typical usage on a new repo might be

$ dep init
$ dep ensure -update

To update a dependency to a new version, you might run

$ dep ensure github.com/pkg/errors@^0.8.0

See the help text for much more detailed usage instructions.

Note that the manifest and lock file formats are not finalized, and will likely change before the tool is released. We make no compatibility guarantees for the time being. Please don't commit any code or files created with the tool.

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? Please check the existing issues to see if your feedback has already been reported. If not, please file 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.