How to squash all git commits into one?
https://stackoverflow.com/a/9254257/8037585
As of git
1.6.2, you can use git rebase --root -i
For each commit except the first, change pick
to
squash
.
this works find, but I had to do a forced push. be careful!
git push -f