Adarsh Hiwrale
Adarsh Hiwrale

Reputation: 146

Mercurial hg push failed on remote, transaction abort, permission denied to update branch?

# hg push

returns this following error shown in the below image: enter image description here

I have pull the VexsysMindsCSCKrishna branch by following command:

#hg pull -b VexsysMindsCSCKrishna <https://bitbucket.org>
#hg update VexsysMindsCSCKrishna

My working branch is VexsysMindsCSCKrishna so I add,commit but when I try to push gives me error shown in the above figure . Is this the right step to checkout remote branch locally ? I don't know where the problem is and #hg push --force is also not helpful.

Upvotes: 1

Views: 1863

Answers (1)

ngoldbaum
ngoldbaum

Reputation: 5590

You do not have permission to push to that branch on the server you are pushing to. Fixing this will require changing the settings on the server.

Upvotes: 2

Related Questions