Changes between Version 8 and Version 9 of git-svn-tutorial

Show
Ignore:
Timestamp:
08/06/09 20:51:09 (12 years ago)
Author:
dukeleto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • git-svn-tutorial

    v8 v9  
    77-s is for --stdlayout which presumes the svn recommended layout for tags, trunk, and branches. 
    88 
    9 -r is for the revision to start taking history from.  If you want to include all of the history, just leave that option off, but it will take a very long time, and you really don't need all of it.  You could also ask around for a tarball of the repo with history if you don't want to use the bandwidth and time. 
     9-r is for the revision to start taking history from.  If you want to include all of the history, just leave that option off, but it will take a very long time, and you really don't need all of it. Because importing all of history is *very* time consuming, DukeLeto has already gone through the trouble and maintains a github mirror of Parrot at http://github.com/leto/parrot/tree/upstream .  
     10{{{ 
     11    git clone git://github.com/leto/parrot.git 
     12    cd parrot && git fetch && git checkout -b upstream origin/upstream 
     13}}} 
     14 
     15You can also download a zip file of the latest Parrot github mirror at http://github.com/leto/parrot/zipball/upstream . 
    1016 
    1117This will create a directory in the current directory named 'parrot'.  If you want to specify the directory to create, pass one more argument.