For example:
1) Git clone to client
2) Work and git commit. (commit 1)
3) Go to sleep
4) Continue work and git commit (commit 2)
5) Git push to Gerrit refs/for/master
6) Go to Gerrit web page and get two changes for review
My question is that how can we only have one single change in Gerrit
even for multiple local commits?
BTW, we are not using "repo", only pure git.
Thanks,
Richard
--
To unsubscribe, email repo-discuss...@googlegroups.com
More info at http://groups.google.com/group/repo-discuss?hl=en
The other option is to do an interactive rebase and squash them together
git rebase –i origin/master
Thomas