aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlexandre Van de Sande <alex.vandesande@ethdev.com>2015-02-17 19:29:10 +0800
committerAlexandre Van de Sande <alex.vandesande@ethdev.com>2015-02-17 19:29:10 +0800
commitabb9b7f46ff3b2ef0bb4f2e95f029591688768c4 (patch)
treec4088c788b3e86935a2b8fd2fbe157340476f091 /README.md
parentfbd5e4d5afeaff6c250a3a953b18476cdb4b86ae (diff)
parentc934222a8089b19587242a3b0bc71ea0aec1d5ef (diff)
downloaddexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.tar
dexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.tar.gz
dexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.tar.bz2
dexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.tar.lz
dexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.tar.xz
dexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.tar.zst
dexon-abb9b7f46ff3b2ef0bb4f2e95f029591688768c4.zip
Merge branch 'develop' into ui
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 70bb058dd..6dd2182de 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,7 @@ For further, detailed, build instruction please see the [Wiki](https://github.co
Automated (dev) builds
======================
+* [[Docker](https://registry.hub.docker.com/u/ethereum/client-go/)]
* [[OS X](http://build.ethdev.com/builds/OSX%20Go%20develop%20branch/Mist-OSX-latest.dmg)]
* [Windows] Coming soon&trade;
* [Linux] Coming soon&trade;
@@ -91,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.