The commits here have obviously been made by a mad man.
Unfortunately they actually contain useful information - it's just that the history is weird.
You should fix this such that our git log looks great!
- Run
source setup.sh(or.\setup.ps1in PowerShell)
Reorder the history such that it actually makes sense - add the files in the order that matches their name.
- Use
git log --oneline --graphto view the commits - Also try
git reflogto view the commits.git reflogdefaults togit reflog showand this is an alias forgit log -g --abbrev-commit --pretty=oneline - Use
git rebase -i <after-this-commit>to reorder the commits. There are commments in the file you edit that explain the commands available. - Use
git log --oneline --graphto view the result
git rebase -i <after-this-commit>git log --oneline --graphgit reflog