Difference between revisions of "Ceph:Clone Source"

From Define Wiki
Jump to navigation Jump to search
(Created page with "== Install GIT == <syntaxhighlight> sudo apt-get install git #Debian sudo yum install git #Redhat </syntaxhighlight> == Clone the Source == <syntaxhighlight> git clone --recursive https://github.com/cep...")
 
(No difference)

Latest revision as of 13:25, 26 August 2014

Install GIT

sudo apt-get install git  #Debian
sudo yum install git  #Redhat


Clone the Source

git clone --recursive https://github.com/ceph/ceph.git

Check you have the latest version

cd ceph
git status

If they are out of date:

git submodule update

Available Branches

By default you will clone the master branch. You may need to check out the stable version

  • master: The unstable Development Branch
  • stable: The bugfix branch
  • next: The next release candidate branch