Changes between Version 19 and Version 20 of GitMirror
- Timestamp:
- 04/12/2013 06:18:11 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GitMirror
v19 v20 120 120 == git svn committing == 121 121 122 `git commit` only makes local commits. To get commits into svn, 123 {{{ 124 git svn dcommit --dry 125 }}} 126 will (update git-svn's metadata cache and) show where git will try to commit, and the list of commits it will push. 127 {{{ 128 git svn dcommit 129 }}} 130 will actually push the changes to svn. 131 122 132 No special rules apply about making Git commits, you can make as many commits as you like, then rebase them into a nice patch series as normal (although the Twisted review process generally reviews the diff of an entire branch, not individual commits, since rebasing isn't possible in SVN). 123 133 … … 133 143 git commit -m'Merging forward' 134 144 git svn dcommit 145 }}} 135 146 136 147 == git svn branch merging ==