So I\'m migrating from svn (code.google.com) to git(github).
I\'ve imported my project from the svn repo, and it imported all the commit history along way. I\'m not real
Find the hash of the commit that you want to start squashing from say abcd12 and then rebase against that hash specifically.
abcd12
git rebase -i abcd12
You are using master to rebase against, which performs the rebase against the tip of the master branch.
master