Hello All,
I am looking for a JAVA rest API to create branch in Bit Bucket repo.
I have tried with the following rest api am not able to get the results.
https://xxxx/rest/api/1.0/projects/xxx/repos/Test/branches{fields:{name:my-feature-branch,{startPoint:master}}}
Please help me on this.
Thanks
Naveen
Hi,
I've just tried
curl -X POST \
https://xxx/bitbucket/rest/branch-utils/1.0/projects/xxx/repos/xxx/branches \
-H 'Authorization: Bearer Nxxxq' \
-H 'Content-Type: application/json' \
-H 'cache-control: no-cache' \
-d '{
"name": "feature/my-feature-branch",
"startPoint": "dev"
}'
and it works perfectly.
Unlock your potential and learn how to use Jira Product Discovery to your advantage. You’ll have the expertise to revolutionize ideas and insights, roadmapping, engage and align teams and stakeholders, and deliver the best solutions—faster. Enroll today!
Start Learning
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.