Difference between revisions of "Documentation/Nightly/Developers/Build Instructions/CheckoutSourceCode"
From Slicer Wiki
m |
|||
Line 36: | Line 36: | ||
<p>Configure the <code>git svn</code> bridge to ensure the mapping with svn revision.</p> | <p>Configure the <code>git svn</code> bridge to ensure the mapping with svn revision.</p> | ||
{{pre2|scroll| | {{pre2|scroll| | ||
− | + | cd Slicer | |
− | + | git svn init http://svn.slicer.org/Slicer4/trunk | |
− | + | git update-ref refs/remotes/git-svn refs/remotes/origin/master | |
− | + | git checkout master | |
− | + | git svn rebase | |
}} | }} | ||
</li> | </li> |
Revision as of 01:51, 15 June 2013
Home < Documentation < Nightly < Developers < Build Instructions < CheckoutSourceCode
For the latest Slicer documentation, visit the read-the-docs. |
CHECKOUT slicer source files
Check out the code using git
and configure the git svn
bridge:
-
Clone the github repository
git clone git://github.com/Slicer/Slicer.git
Setup the development environment using the
SetupForDevelopment.sh
script as described on our Development With Git page.-
Configure the
git svn
bridge to ensure the mapping with svn revision.cd Slicer git svn init http://svn.slicer.org/Slicer4/trunk git update-ref refs/remotes/git-svn refs/remotes/origin/master git checkout master git svn rebase