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
git rebase -i --root will start an interactive rebase of all commits from the beginning.
git rebase -i --root
From there, you can squash all commits into one and/or perform other edits.