aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-02-17 00:59:54 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-02-17 00:59:54 +0800
commitcb345027284527ce700512f2734116d3ca2f6cdf (patch)
tree99892401c9013590cb0a23e4bdfea75d28c33713 /README.md
parent9796feccb7fb8a5e67deaebd9d770a76e30ed6b2 (diff)
downloadgo-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.tar
go-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.tar.gz
go-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.tar.bz2
go-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.tar.lz
go-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.tar.xz
go-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.tar.zst
go-tangerine-cb345027284527ce700512f2734116d3ca2f6cdf.zip
Add godep usage information
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5b4ef0a57..6dd2182de 100644
--- a/README.md
+++ b/README.md
@@ -92,6 +92,8 @@ are ignored (use gofmt!). If you send pull requests make absolute sure that you
commit on the `develop` branch and that you do not merge to master.
Commits that are directly based on master are simply ignored.
+For dependency management, we use [godep](https://github.com/tools/godep). After installing with `go get github.com/tools/godep`, run `godep restore` to ensure that changes to other repositories do not break the build. To update a dependency version (for example, to include a new upstream fix), run `go get -u <foo/bar>` then `godep update <foo/...>`. To track a new dependency, add it to the project as normal than run `godep save ./...`. Changes to the Godeps folder should be manually verified then commited.
+
To make life easier try [git flow](http://nvie.com/posts/a-successful-git-branching-model/) it sets
this all up and streamlines your work flow.