Go dependency management tool experiment (deprecated)
Перейти к файлу
Kris Nova 4d5c597e0f Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
cmd/dep Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
gps Fix races in monitoredCmd 2017-05-01 20:32:01 -06:00
hack Marking gofmt hack script executable 2017-04-25 11:38:23 -06:00
internal Replace uses of filepath.HasPrefix with a path-aware function 2017-04-25 21:08:02 -06:00
test Merge pull request #402 from domgreen/test_harness_errors 2017-04-29 00:53:41 -04:00
testdata Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
vendor/github.com Fix gofmt and travis 2017-04-25 11:14:46 -06:00
.codeclimate.yml Add code climate 2017-04-28 14:27:43 -04: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 Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CODE_OF_CONDUCT.md (To Squash) Moving CODE_OF_CONDUCT.md ../ 2017-04-25 09:11:55 -06:00
CONTRIBUTING.md Add a FAQ 2017-04-19 14:03:49 -05:00
CONTRIBUTORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
FAQ.md Merge pull request #465 from zellyn/patch-1 2017-04-26 21:25:54 -04:00
Gopkg.lock Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
Gopkg.toml Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06: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 Add code climate 2017-04-28 14:27:43 -04:00
analyzer.go Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
analyzer_test.go Improve coverage for DeriveManifestAndLock 2017-04-28 06:24:34 -06:00
appveyor.yml Add 1.8 support for travis / appveyor 2017-02-23 12:45:59 -05:00
context.go Merge branch 'master' into add-gps 2017-04-26 07:49:05 -06:00
context_test.go Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
fs.go Merge pull request #374 from EwanValentine/feature/create-toml-file-examples-on-init 2017-04-25 23:41:14 -04:00
fs_test.go Cleanup temp dir in TestIsEmpty. 2017-04-30 21:20:44 -04:00
lock.go Fix gofmt and travis 2017-04-25 11:14:46 -06:00
lock_test.go Fix gofmt and travis 2017-04-25 11:14:46 -06:00
manifest.go Merge branch 'master' into add-gps 2017-04-26 07:49:05 -06:00
manifest_test.go Fix gofmt and travis 2017-04-25 11:14:46 -06:00
project.go Fix gofmt and travis 2017-04-25 11:14:46 -06:00
project_test.go Fix gofmt and travis 2017-04-25 11:14:46 -06:00
test_project_context_test.go Fix gofmt and travis 2017-04-25 11:14:46 -06:00
txn_writer.go Merge branch 'master' into add-gps 2017-05-01 20:34:30 -06:00
txn_writer_test.go removing Payload from SafeWriter 2017-05-01 12:34:38 +01:00

README.md

Dep

Linux: Build Status | Windows: Build status | Code Climate

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 and FAQ 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.