So I've used the following:
git checkout --orphan newBranch
git add -A # Add all files and commit them
git commit
git branch -D master # Deletes the master branch
git branch -m master # Rename the current branch to master
Which works quite well for Gitrepo commit history, however, when I use gitk --all I still see all of the prior commits. Is it possible to also merge all of these commits into one as well?
Thanks!