82 | | 4. And then when everything is ready: `git svn dcommit`. |
| 82 | 4. And then when everything is ready-- |
| 83 | {{{ |
| 84 | git svn dcommit |
| 85 | }}} |
| 86 | Since "git svn dcommit" creates a revision in the subversion repository for each local commit, you may need to squash (i.e. combine) commits to ensure that your commit to the WebKit repository will create just one revision. You can do this, for example, by using-- |
| 87 | {{{ |
| 88 | git rebase -i HEAD~n |
| 89 | }}} |
| 90 | where n is the number of the number of commits you want to see in the interactive editor. |