Changes between Version 16 and Version 17 of DevNotes/Obsolete/AnacondaSetup


Ignore:
Timestamp:
Feb 13, 2015 4:02:37 AM (9 years ago)
Author:
Peter Parker
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/Obsolete/AnacondaSetup

    v16 v17  
    3838}}} 
    3939 
    40 == Step 3 - Install SVN (Soon to be Git!) == 
     40== Step 3 - Install Git (Or optionally stay with SVN) == 
    4141 
    42 Download and install the latest version of SVN from http://sourceforge.net/projects/win32svn/files/latest/download. 
     42* Git * 
     43Download: http://git-scm.com/download/win 
     44 
     45Set up your credentials: 
     46 
     47{{{ 
     48git config --global user.name "John Doe" 
     49git config --global user.email johndoe@example.com 
     50}}} 
     51 
     52* SVN * 
     53Download: http://sourceforge.net/projects/win32svn/files/latest/download 
    4354 
    4455== Step 4 - Download the SasView Source Code == 
    4556 
    4657{{{ 
     58# With Git: 
     59git clone git@github.com:SasView/sasview.git sasview-code 
     60# With SVN: 
    4761svn checkout https://github.com/SasView/sasview sasview-code 
    4862cd sasview-code