I am git and github user new to mercurial and bitbucket and I am trying to use bitbucket for a project.
So far, I had write access to the new private Bitbucket repository, and I started :
- Cloning
- adding my existing project
- committing
- trying to push, I get
authorization failed via:
Https
$ hg push https: // mariusbutuc@bitbucket.org / DB2UAdmin / repo
http authorization required
realm: Bitbucket.org HTTP
user: mariusbutuc
password:
pushing to https: // mariusbutuc@bitbucket.org / DB2UAdmin / repo
searching for changes
abort: authorization failed
Ssh
$ hg push ssh: // hg@bitbucket.org / DB2UAdmin / repo
pushing to ssh: // hg@bitbucket.org / DB2UAdmin / repo
searching for changes
remote: adding changesets
remote: adding manifests
remote: adding file changes
remote: added 1 changesets with 9664 changes to 9664 files
remote: You're not allowed to write to this repository.
remote: transaction abort!
remote: rollback completed
remote: abort: pretxnchangegroup.bb_perm hook failed
I also tried using simple HTTP to get similar results, for example, using HTTPS .
How can I make it work?
Additional information:
- python 2.7.1 +
- mercurial 1.7.5
- on Ubuntu 11.04
source share