Getting the latest source out of Git.
You can browse the latest state of development in our Git Repository http://git.drbd.org.
Note that sometimes this code might not even compile, though, but we try to avoid that.
Even though you could clone via http, too, please always use the git native protocol for cloning if possible, it is much faster.
DRBD-8.2.x is the current development line. To get the latest drbd-8.2 code:
[lars@soda src]$ git clone git://git.drbd.org/drbd-8.2
DRBD-8.0.x is stable since 2007-01-24. To get the latest drbd-8.0 code:
[lars@soda src]$ git clone git://git.drbd.org/drbd-8.0
DRBD-0.7.x is stable since 2004-07-30. Note that support and maintenance for the drbd 0.7 code base is phased out. To get the latest drbd-0.7 code anyways:
[lar@soda src]$ git clone git://git.drbd.org/drbd-0.7
To get a specific release (example given: 8.0.6):
[lars@soda src]$ git clone git://git.drbd.org/drbd-8.0; cd drbd-8.0; git-checkout drbd-8.0.6
To get a list of all tagged releases in a certain development branch:
[lars@soda src]$ git-ls-remote git://git.drbd.org/drbd-8.2
You cannot git-push there, of course, so if you want to submit a patch for review, git-email it to drbd-dev. 
|