I'm struggling to find a good workflow when two or more people are pushing patch-set's to the same change-set in Gerrit.
I am trying to accomplish this with command-line Git commands (no git-review, IDE, etc).
Pulling down the latest patch-set from the Gerrit server for a particular change is easy enough, but from there I'm not sure.
I would think the process would be:
- fetch latest patch-set for change from server
- rebase against latest patch-set
- push
But during the rebase it marks all incoming changes as conflict, even if they weren't altered locally.
Perhaps this is related to the fact that the latest patch-set downloaded is not reachable by HEAD locally.
Can anyone suggest how multiple developers can work on the same change?
EDIT: The answer to this question are shown with the techniques described in: How to change a patchset and push it as a new one?