- git init
- touch 0 && git add . && git commit -m "C0"
- git checkout -b bugFix
- touch 1 && git add . && git commit -m "C1"
- touch 2 && git add . && git commit -m "C2"
- touch 3 && git add . && git commit -m "C3"
- git log --oneline --graph --all
- git checkout main
- touch 4 && git add . && git commit -m "C4"
- touch 5 && git add . && git commit -m "C5"
- touch 6 && git add . && git commit -m "C6"
- git log --oneline --graph --all
- git rebase main bugFix
- git log --oneline --graph --all