0

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?

Newbie
  • 2,664
  • 7
  • 34
  • 75

1 Answers1

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?

Community
  • 1
  • 1
uwolfer
  • 4,356
  • 1
  • 25
  • 40