Currently, when I run git svn dcommit git creates a separate commit in SVN for every local commit I\'ve made since last syncing with SVN. Is there any way for
git svn dcommit
A simpler way could be (if you have multiple commits piled up on your local system):
git reset git commit -am "your message" // This will create one clubbed commit of all the commit till the hash tag used.