How to create stacked patches for gerrit

- Veröffentlicht unter PHP von

You create multiple commits and want to change the second latest:

git stash
git rebase -i origin/main
git stash pop
git add -p
git commit --amend
git rebase --continue