gitoauthmercurialbitbucket

How to manipulate Bitbucket repository with token?


I followed this documentation to get a token value and a token secret from bitbucket:
https://confluence.atlassian.com/display/BITBUCKET/OAuth+on+Bitbucket

After that I want to push/pull to a given repo by using that token.

At Github I can use the token like this way: https://help.github.com/articles/git-automation-with-oauth-tokens#step-2-clone-a-repository

My question is how can I use this kind of http authorization at bitbucket (mercurial/git)?


Solution

  • This BitBucket page mentions:

    We recently introduced OAuth 2 and also added the ability to use them as HTTP Basic Auth credentials.

    Cloning a repository with an access token

    Since add-ons will not be able to upload their own SSH keys to clone with, access tokens can be used as Basic HTTP Auth credentials to clone securely over HTTPS.

    git clone https://x-token-auth:{access_token}@bitbucket.org/user/repo.git
    

    The literal string x-token-auth as a substitute for username is required.

    Our process is similar to GitHub, yet slightly different: the difference is GitHub puts the actual token in the username field.

    See more at "OAuth on Bitbucket Cloud", as suggested in the comments by nick graziano.