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 really proud of those comments as it was one of my first project, not really serious.
I'd like to rebase everything into a single 'initial import' commit.
I've pulled everything on my computer and I'm trying to do that. But all I found was:
git rebase -i master
but it only rebases new modifications and commits.
How can I clean my github repository from all history with a rebase?