Libvirt Sandbox: Source code management
libvirt sandbox uses GIT for managing source code. Don’t be afraid.
The code is browseable online
http://libvirt.org/git/?p=libvirt-sandbox.git
Or get a direct local checkout using
# git clone git://libvirt.org/libvirt-sandbox.git
Submitting patches
We strongly recommend anyone wanting to submit patches, to use the git send-email
command to send the proposed patches to the primary mailing list. Patches should always be based on the current GIT master branch state. For example, if you have branch nicefeature
, then the following would be the steps to use to rebase to current GIT master and submit the changes
# git checkout master # git pull # git checkout nicefeature # git rebase master # git send-email --compose --to "libvir-list@redhat.com" \ --smtp-server=YOUR-SMTP-SERVER --no-chain-reply-to \ master..nicefeature