Difference between revisions of "Documentation/Nightly/Developers/Build Instructions/CheckoutSourceCode"

From Slicer Wiki
Jump to: navigation, search
(Prepend documentation/versioncheck template. See http://na-mic.org/Mantis/view.php?id=2887)
Line 12: Line 12:
  
 
<br>
 
<br>
 
=== Git ===
 
  
 
Checking the code using Git and configuring the <code>git svn</code> bridge is the way to go. If you plan on contributing code, have a look at [[Documentation/{{documentation/version}}/Developers/Tutorials/ContributePatch|How to contribute a patch ?]]
 
Checking the code using Git and configuring the <code>git svn</code> bridge is the way to go. If you plan on contributing code, have a look at [[Documentation/{{documentation/version}}/Developers/Tutorials/ContributePatch|How to contribute a patch ?]]
Line 33: Line 31:
 
</pre>
 
</pre>
  
 +
<!--
 
=== Svn ===
 
=== Svn ===
  
Line 38: Line 37:
  
 
   svn co http://svn.slicer.org/Slicer4/trunk Slicer
 
   svn co http://svn.slicer.org/Slicer4/trunk Slicer
 +
-->

Revision as of 16:02, 14 June 2013

Home < Documentation < Nightly < Developers < Build Instructions < CheckoutSourceCode


For the latest Slicer documentation, visit the read-the-docs.


CHECKOUT slicer source files


1. While it is not enforced, we strongly recommend you to AVOID the use of SPACES for both the source directory and the build directory. We mean it.

2. Even if you use svn to check out Slicer source code, you will need to have git installed to checkout and build other libraries. YES, you need to install the things listed in the prerequisites !.



Checking the code using Git and configuring the git svn bridge is the way to go. If you plan on contributing code, have a look at How to contribute a patch ?

  • Clone the github repository
 git clone git://github.com/Slicer/Slicer.git
  • 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