trejder
trejder

Reputation: 17505

Changes of one user does not appear in Gerrit

Together with my co-worker we're collaborating on some project, using Gerrit (and git, of course). We have both Gerrit and git properly configured (user names, user e-mails, SSH keys etc.) and everything works perfectly, except for the fact, that my colleague's changes doesn't appear in Gerrit.

Everything is OK in git layer. All changes are correctly merged and whenever he pushes his changes to Gerrit and then I pull all the changes, everything is also merged in my local repository. No code loss happens and it never happened before. The only obstacle, is that we can't see his changes (all is fine with my changes).

We're both Gerrit admins and we're added to group of owners of this project. I think, we checked everything, we could check. I think, I'm slowly running out of ideas. What can be causing such strange behaviour?

Upvotes: 0

Views: 393

Answers (1)

forvaidya
forvaidya

Reputation: 3315

That means your colleague is not submitting for reviews

git push HEAD:refs/for/master

He is rather doing direct push

git push master
So this has not gone thru gerrit, therefore you don't see.

Upvotes: 1

Related Questions