Go dependency management tool experiment (deprecated)
Перейти к файлу
Jaana Burcu Dogan 21f357ac6c fix memos 2017-01-25 21:13:39 -05:00
_testdata/rootfind Basic tests for root finding 2016-10-18 11:05:34 -04:00
hack add script to check if changes to vendor are valid 2017-01-19 12:21:40 -08:00
vendor/github.com Chase gps again 2017-01-24 08:44:49 -08:00
.gitignore rename 'hoard' to 'dep' (this time for sure) 2017-01-18 16:17:23 -08:00
.travis.yml Disable OSX on travis 2017-01-25 21:03:55 -05:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CONTRIBUTING.md minor updates to contributing.md 2017-01-24 10:21:10 -08: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 travis uri 2017-01-24 09:16:02 -08:00
analyzer.go fix typo 2017-01-25 21:13:39 -05:00
analyzer_test.go rename 'hoard' to 'dep' (this time for sure) 2017-01-18 16:17:23 -08:00
appveyor.yml rename 'hoard' to 'dep' (this time for sure) 2017-01-18 16:17:23 -08:00
context.go Remove unnecessary conversion 2017-01-24 19:54:13 -05:00
context_test.go rename 'hoard' to 'dep' (this time for sure) 2017-01-18 16:17:23 -08:00
dep_test.go fix error on AppVeyor 2017-01-25 21:04:51 -05:00
ensure.go Fix minor typo 2017-01-25 19:31:53 -05:00
ensure_test.go fix memos 2017-01-25 21:13:39 -05:00
hash_in.go Make golint happier 2017-01-24 19:54:13 -05:00
init.go Make golint happier 2017-01-24 19:54:13 -05:00
init_test.go fix memos 2017-01-25 21:13:39 -05:00
lock.go Make golint happier 2017-01-24 19:54:13 -05:00
lock.json Chase gps again 2017-01-24 08:44:49 -08:00
lock_test.go dep: internalize and improve JSON handling 2016-11-30 19:37:28 -05:00
main.go doc: add godoc to the binary 2017-01-25 09:49:10 -08:00
main_test.go Added more tests to main_test.go 2017-01-25 09:39:08 -08:00
manifest.go avoid unneccessary naked return 2017-01-25 16:20:28 -05:00
manifest.json Chase latest gps master 2017-01-04 13:07:28 -08:00
manifest_test.go fix gofmt errors 2017-01-13 11:41:22 -08:00
remove.go Make golint happier 2017-01-24 19:54:13 -05:00
remove_test.go fix memos 2017-01-25 21:13:39 -05:00
status.go Add hidden hash-inputs command to dump hash inputs 2017-01-18 16:19:08 -08:00
status_test.go gofmt for struct 2017-01-25 09:34:55 -08:00
txn_writer.go Make golint happier 2017-01-24 19:54:13 -05:00
txn_writer_test.go add license to all files 2017-01-18 09:28:20 -05:00

README.md

Dep

Linux & OSX: Build Status | Windows: Build status

Dep is a prototype dependency management tool.

Current status

Pre-alpha. Lots of functionality is knowingly missing or broken. 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 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.