Newbie
Newbie

Reputation: 2708

View all the changes pushed by a user in gerrit

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?

Upvotes: 0

Views: 581

Answers (1)

uwolfer
uwolfer

Reputation: 4516

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?

Upvotes: 1

Related Questions