Go dependency management tool experiment (deprecated)
Перейти к файлу
Jess Frazelle 2deaca6ae2
fix help and gitignore
Signed-off-by: Jess Frazelle <acidburn@google.com>
2017-01-18 14:44:24 -08:00
_testdata/rootfind Basic tests for root finding 2016-10-18 11:05:34 -04:00
hack/licenseok add script to check license headers 2017-01-18 09:28:20 -05:00
vendor/github.com Use default gps signal handling 2017-01-11 13:49:40 -08:00
.gitignore fix help and gitignore 2017-01-18 14:44:24 -08:00
.travis.yml update travis to check if all files have the correct license header 2017-01-18 09:28:20 -05:00
AUTHORS Add repo boilerplate and readme 2016-10-07 11:28:24 +11:00
CONTRIBUTING.md remove gerrit reference in contributing.md and add github 2017-01-13 17:20:00 -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 fix CI link 2017-01-17 17:42:03 -08:00
analyzer.go Implement DeriveManifestAndLock 2016-12-08 20:13:48 -05:00
analyzer_test.go rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
appveyor.yml rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
context.go add license to all files 2017-01-18 09:28:20 -05:00
context_test.go add license to all files 2017-01-18 09:28:20 -05:00
ensure.go rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
ensure_test.go add license to all files 2017-01-18 09:28:20 -05:00
hoard_test.go add license to all files 2017-01-18 09:28:20 -05:00
init.go rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
init_test.go add license to all files 2017-01-18 09:28:20 -05:00
lock.go rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
lock.json Use default gps signal handling 2017-01-11 13:49:40 -08:00
lock_test.go dep: internalize and improve JSON handling 2016-11-30 19:37:28 -05:00
main.go fix help and gitignore 2017-01-18 14:44:24 -08:00
main_test.go add license to all files 2017-01-18 09:28:20 -05:00
manifest.go fix gofmt errors 2017-01-13 11:41:22 -08: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 rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
remove_test.go better getCommit() for tests that doesn't require access to github API or network 2017-01-13 15:52:13 -08:00
status.go rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
txn_writer.go rename 'hoard' to 'nest' 2017-01-17 17:06:45 -08:00
txn_writer_test.go add license to all files 2017-01-18 09:28:20 -05:00

README.md

Nest

Linux & OSX: Build Status | Windows: Build Status

Nest 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/nest

Typical usage on a new repo might be

$ nest init
$ nest ensure -update

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

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