Changes between Version 10 and Version 11 of git-svn-tutorial
- Timestamp:
- 08/08/09 01:37:13 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
git-svn-tutorial
v10 v11 49 49 50 50 = Neat Tricks = 51 52 == Patches Between Local Changes and Trunk == 53 54 If you want to see the patchset representing your commits and the remote server: 55 {{{ 56 git format-patch remotes/trunk 57 }}} 58 59 Change ''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. 51 60 52 61 == Interactive Rebase ==