You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
In a project with project key say XXX, is there an api call that can be made to create the repo named "test"? We are currently on bitbucket data center
You can use /rest/api/1.0/projects/{projectKey}/repos post to create a new repository. The authenticated user must have project admin permissions in the project you want to create the repository.
Thanks Mikael for the response. Would the entire command be something like this (tried couple options and didnt work yet)
curl -s -u username:password -k --header "Content-Type: application/json" -X PUT"Content-Type: application/json" -X PUT "https://bitbucket.xxx.xxx/rest/api/1.0/projects/CR/repos/testtest"
CR is the project key and testtest is the name of the repos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
From what I can see from the documentation you also have to include scmId which should be set to git. Here is the example in the guide:
{
"name": "My repo",
"scmId": "git",
"forkable": true,
"defaultBranch": "main"
}
Default branch and workable are optional.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry to hijack this thread, but this is not working for me as I expect it to.
curl - u username:password http://bitbucket.domains/rest/api/1.0/projects/PROJECT/repos/toplevel -H 'Content-Type: application/json' -d '{"name": "newrepo", "scmID": "git"}'
Instead creates a repo here:
/rest/api/1.0/projects/~USERNAME/repos/newrepo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, The Cloud team recently announced 12 new DevOps features that help developers ship better code, faster ! While we’re all excited about the new improvements to Bitbucket ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.