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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.