From f7aa14380e94bbbe0d359aa3a1dda1d67d6f04b5 Mon Sep 17 00:00:00 2001 From: Tom Wilkie Date: Thu, 17 Mar 2016 15:05:04 +0000 Subject: [PATCH] Add vendoring docs --- vendor/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 vendor/README.md diff --git a/vendor/README.md b/vendor/README.md new file mode 100644 index 000000000..50e816893 --- /dev/null +++ b/vendor/README.md @@ -0,0 +1,17 @@ +# Managing Vendored Dependencies with `gvt` + +These operations result in uncommitted changes to your +branch; you will need to commit them as normal. Execute them in the +root of your checkout. + +## Adding a New Dependency + + ~/scope$ gvt fetch example.com/organisation/module vendor/example.com/organisation/module + +## Updateing a Specific Dependancy + + ~/scope$ gvt update example.com/organisation/module vendor/example.com/organisation/module + +## Remove a Dependency + + ~/scope$ gvt delete example.com/organisation/module vendor/example.com/organisation/module