Le 29/03/12 13:33, Marcin Cieslak a écrit :
Side note: I have a small tool (https://github.com/saper/gerrit-fetch-all) to fetch all changesets from gerrit and branch the as "change/3841/4". Then you can diff your changesets locally, in the git repository.
You could have created a gist to host that shell script :-D
Anyway, for historical tracking, the way to fetch all changes is:
git fetch gerrit refs/changes/*:refs/changes/*
Then to diff patchset 1 and 2 of change 2476:
git diff changes/76/2476/{1,2}
Marcin, maybe your feature could make it in git-review ?