Go dependency management tool experiment (deprecated)
Перейти к файлу
tro3 026ac7fd1c Converting analyzer_test.go to golden-file pattern 2017-02-12 23:52:17 -05:00
_testdata Converting analyzer_test.go to golden-file pattern 2017-02-12 23:52:17 -05:00
cmd/dep refactored so there would be one IsNonEmptyDir check instead of an IsDir check and an IsEmptyDir check 2017-02-10 16:53:42 -08:00
hack add script to check if changes to vendor are valid 2017-01-19 12:21:40 -08:00
test Adding copyright and tossing extraneous comment 2017-02-12 23:52:17 -05:00
vendor/github.com Chase latest gps 2017-02-02 15:13:42 -08:00
.gitignore Ignore these files in the root of the repo only 2017-02-02 16:42:05 -08:00
.travis.yml move command code into cmd subpackage 2017-01-28 01:45:37 -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 Add note about required Go version to README 2017-02-08 09:47:18 -05:00
analyzer.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
analyzer_test.go Converting analyzer_test.go to golden-file pattern 2017-02-12 23:52:17 -05:00
appveyor.yml move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
context.go Tweaking per PR feedback 2017-02-01 14:05:06 -05:00
context_test.go Syncing fork and moving Testgo to NewHelper 2017-02-01 14:05:06 -05:00
fs.go refactored so there would be one IsNonEmptyDir check instead of an IsDir check and an IsEmptyDir check 2017-02-10 16:53:42 -08:00
fs_test.go refactored so there would be one IsNonEmptyDir check instead of an IsDir check and an IsEmptyDir check 2017-02-10 16:53:42 -08:00
lock.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
lock.json Update memo in lock 2017-02-02 15:13:42 -08:00
lock_test.go Converting analyzer_test.go to golden-file pattern 2017-02-12 23:52:17 -05:00
manifest.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
manifest.json Chase latest gps master 2017-01-04 13:07:28 -08:00
manifest_test.go Converting analyzer_test.go to golden-file pattern 2017-02-12 23:52:17 -05:00
project.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
project_test.go rename testgo to Helper 2017-01-31 14:08:27 -05:00
txn_writer.go move command code into cmd subpackage 2017-01-28 01:45:37 -05:00
txn_writer_test.go Converting analyzer_test.go to golden-file pattern 2017-02-12 23:52:17 -05: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. It is not (yet) blessed by the Go team.

It IS, however, the consensus effort of most of the Go community, and being integrated into the go toolchain is the goal.

We're working on a roadmap with more details.

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