Reputation: 8447
I am trying to commit+push my code. I have gerrit installed in eclipse.
Now it is not pushing the code, as I cannot see my logs in the gdt gitblit.
Instead it is saying 'remote rejected'
Upvotes: 0
Views: 1296
Reputation: 6842
Some reasons why a push fails:
Missing Change-ID, fix by adding the commit-msg hook. See commit-msg hook
Pushing to branch instead of pushing for review. Fix by pushing to refs/for/master
or refs/for/your_branch
origin/master
Upvotes: 1