|
SourceCode
How to obtain latest source code
Get the Hypertable source codeWe're using the git version control system to manage the source code for this project. To obtain a local copy of the repository, install the latest version of git (at least 1.5.3.7) and then issue the following commands: git config --global user.name "<your name>" git config --global user.email "<your email>" to configure your identity in the commits. To obtain the source: cd ~/src git clone git://scm.hypertable.org/pub/repos/hypertable.git This git repository represents the most up-to-date version of the source code. We push changes into this repository only if all of the regression tests pass. To update your local git repository (created with the above command) with the latest changes, issue the following commands: cd ~/src/hypertable git pull Become a contributorThere are a few options to contribute to the project. Email patches always work (see the documentation by git send-email --help). Regular contributor might find a public repository hosting service helpful. For example, repo.or.cz, unfuddle.com and github.com all offer free git hosting, enough for hypertable. The following instruction is for github.com (as it's the easiest to fork a project):
git remote add github <your_push_url> git push github topic/name Browse the wiki (documentation) source and history |