Changes between Version 17 and Version 18 of git-svn-tutorial

Show
Ignore:
Timestamp:
09/17/09 03:35:31 (12 years ago)
Author:
dukeleto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • git-svn-tutorial

    v17 v18  
    2222{{{ 
    2323    git clone git://github.com/leto/parrot.git 
     24}}} 
     25 
     26This will create a directory in the current directory named 'parrot'.  If you want to specify the directory to create, pass one more argument. 
     27 
     28The "upstream" branch is what directly mirrors Parrot trunk. To start a local branch that tracks the upstream branch: 
     29 
     30{{{ 
    2431    cd parrot && git fetch && git checkout -b upstream origin/upstream 
    25 }}} 
    26  
    27 This will create a directory in the current directory named 'parrot'.  If you want to specify the directory to create, pass one more argument. 
    28  
    29  
    30 You can also download a tar archive containing the complete history and all branches as well as svn meta data from http://moritz.faui2k3.org/files/parrot-all-git-svn.tar.gz (recommended; prepared by Tene, polished by moritz). 
     32 
     33}}} 
     34 
     35You can also download a tar archive containing the complete history and all branches as well as svn meta data from  
     36 
     37 * http://technosorcery.net/parrot-git-svn.tbz (Updated daily) 
     38 * http://moritz.faui2k3.org/files/parrot-all-git-svn.tar.gz (recommended; prepared by Tene, polished by moritz). 
    3139 
    3240Now, start working on patches.  The simplest way to work, without local branches, is: