Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changed svn urls to https; the http versions all failed with svn cli v1.6. Updated link to svn information.

...

Get the source code on your local drive using SVN. Most development is done on the "trunk":

Code Block
svn checkout httphttps://svn.apache.org/repos/asf/zookeeper/trunk/ zookeeper-trunk

You may also want to develop against a specific release. To do so, visit http https://svn.apache.org/repos/asf/zookeeper/tags/ and find the release that you are interested in developing against. To checkout this release, run:

Code Block
svn checkout httphttps://svn.apache.org/repos/asf/zookeeper/tags/release-X.Y.Z/ zookeeper-X.Y.Z

...