Ceph:Clone Source

From Define Wiki
Revision as of 13:25, 26 August 2014 by Michael (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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