I have setup a gerrit server for code review for a git repo.
Whenever I do git push origin master
the push is successful but the changes are not being displayed on gerrit web page under My -> Changes
tab . Only the changes that were pushed to HEAD:ref/for/master
branch are being displayed.
So how can I display all the pushes to the gerrit server on gerrit web page?
Asked
Active
Viewed 369 times
0

Newbie
- 2,664
- 7
- 34
- 75
1 Answers
1
Changes pushed without the refs/for/
prefix are pushed directly into the target branch without a Gerrit review.
You can display commits by author with plain Git commands; see: How can I view a git log of just one user's commits?
-
I want to find the commits by author in gerrit web page . Is it possible? – Newbie May 27 '15 at 10:33
-
You can only find changes in Gerrit which are reviewed in Gerrit. – uwolfer May 27 '15 at 11:11