Changes between Version 10 and Version 11 of git-svn-tutorial

Show
Ignore:
Timestamp:
08/08/09 01:37:13 (12 years ago)
Author:
chromatic
Comment:

Added local/repo change trick

Legend:

Unmodified
Added
Removed
Modified
  • git-svn-tutorial

    v10 v11  
    4949 
    5050= Neat Tricks = 
     51 
     52== Patches Between Local Changes and Trunk == 
     53 
     54If you want to see the patchset representing your commits and the remote server: 
     55{{{ 
     56    git format-patch remotes/trunk 
     57}}} 
     58 
     59Change ''trunk'' to the name of the branch, if you're working against a branch.  This will create a series of numbered patches, corresponding to every commit you've made.  You can review them as you like. 
    5160 
    5261== Interactive Rebase ==