I need to know the commits that between two dates in a branch. I'm using the REST API V2.
i need something like :
https://api.bitbucket.org/2.0/repositories/user/repo/commits?include=master&date>2019-12-19&date<2020-12-19
i need commits between these spesific dates
Hi @Fatih Melih Ersoy and welcome to the community.
I'm afraid that the API endpoint for getting the commits of a repo doesn't support filtering by date at the moment.
We have a feature request about this in our issue tracker:
I would suggest that you add your vote in the feature request (by selecting the Vote for this issue link) as the number of votes helps the development team and product managers better understand the demand for new features. You are more than welcome to leave any feedback, and you can also add yourself as a watcher (by selecting the Start watching this issue link) if you'd like to get notified via email on updates.
Implementation of new features is done as per our policy here and any updates will be posted in the feature request.
In the meantime, as a workaround, you could make a mirror clone of the repo, and then use a git log command in the mirror clone with the options --after and --before, to get the commits between two dates.
Kind regards,
Theodora
Hello @Theodora Boudale , any update on this question, looks like this was discussed roughly 3 years back and do not see any traction on this thread?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I'm afraid that I don't have any updates on the feature request. We get a large number of suggestions and feature requests; while we endeavor to update and respond to popular suggestions, the volume we receive means there will often be occasions when we can’t provide an update or response.
In the meantime, apart from the workaround I mentioned with the git log command in a clone, you can get all commits via our API end then use another tool that filters json data in order to filter the results by dates. jq is such a tool.
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.