I would like to know if there any way to push multiple commits from local Git repository to remote SVN repository and do not merge them into one single commit?
I am using SmartGit and let's say I have 5 commits in my local GIT branch, this branch referenced to remote SVN /trunk, when push those commits to SVN I get one big commit in SVN
Thanks in advance for any help
trunk) you just have one "merge" commit, the 5 merge source commits can't be pushed as SVN does not support multiple lines of history in one branch. Hence, instead of merging branchXtotrunk, Rebase your five commits ontotrunk, so you just have a linear history.