how to do it?
just quick commands to get you started, enjoy!
soft reset to say 5 commits back (keeps changes staged)
git reset --soft HEAD~5
now create a new commit with a new message
git commit -m "feat(ai-mapping): #1234 - commit message"
lastly, push your changes
do not do this on shared branches where other devs are actively pulling your changes as well
git push --force-with-lease