Changes between Version 15 and Version 16 of git-svn-tutorial

Show
Ignore:
Timestamp:
08/16/09 17:33:01 (12 years ago)
Author:
dukeleto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • git-svn-tutorial

    v15 v16  
    99-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. 
    1010 
    11 This takes a clone of the repository at that revision; to update it to head, you now need: 
     11NOTE: The older a revision you choose, the longer it will take to import. But you will not be able to "git blame" past the earliest revision you import. Choose wisely. 
     12 
     13This takes a clone of the repository at that revision; to update it to HEAD, you now need: 
    1214 
    1315{{{ 
     
    5759}}} 
    5860This will update your local checkout and then re-apply your local un-submitted commits on top of the new trunk. 
     61 
     62If you want to get the commits for all branches that exist in your clone: 
     63{{{ 
     64    git svn fetch 
     65}}} 
    5966 
    6067= Neat Tricks =