Can we filter out commit logs based on date/time?
=> So that we'll get to know on which date what changes has done before.
Hi @Avni Maharana and welcome to the community.
You can do this with the command git log in a local clone of the repo. With git log you can use the options --after and --before to filter commits newer or older than a certain date.
Is this what you've been looking for? Or were you looking for something different, e.g. filtering commits in the UI, or when you retrieve them via API?
Kind regards,
Theodora
Thank you so much @Theodora Boudale
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Theodora Boudale thank you, I was looking for a way to filter the Bitbucket commits by date, but doing it inside actual git is a much better, reasonable and provider-independent way
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.