You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Team,
We are using Bitbucket github and I am using their API to update an file like below
https://docs.atlassian.com/bitbucket-server/rest/5.7.0/bitbucket-rest.html#idm45568365784624
In case of updating the README.md, it works as expected
curl -X PUT -u username:password -F content=@README.md -F 'message=Updated using file-edit REST API'
-F branch=master -F sourceCommitId=5636641a50b
http://example.com/rest/api/latest/projects/PROJECT_1/repos/repo_1/browse/test/README.md
Updating the file in github repo works as expected but when I try to create the new file path like below
curl -X PUT -u username:password -F content=@README.md -F 'message=Updated using file-edit REST API'
-F branch=master -F sourceCommitId=5636641a50b
http://example.com/rest/api/latest/projects/PROJECT_1/repos/repo_1/browse/test/newfile.md
it fails with the error : **NoSuchPathException**
{
"errors": [
{
"context": null,
"message": "test/newfile.md could not be edited because the file has been deleted on the 4186264533e065bd10ad2baf307f5687afcb445c branch.",
"exceptionName": "com.atlassian.bitbucket.content.NoSuchPathException"
}
]
}
As per the documentation, It says both the update and create should work as expected but only UPDATE is working and CREATING A NEW FILE fails
**branch: the branch on which the path should be modified or created**
Anyhelp on this is appreciated!
For people running into this issue, you need to remove the sourceCommitId
parameter for new files. Seems like the sourceCommitId
is needed only for existing files.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.