Create a fixup commit

Creates a fixup commit that can be autosquashed in the next rebase.
更新于: 2023-10-18 22:07:01
# usage 
git commit --fixup <commit>

# example
git add .
git commit --fixup 3050fc0de
# Created a fixup commit for `3050fc0de`
git rebase HEAD~5 --autosquash
# Now the fixup commit has been squashed