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.
I look for the table, where i could find all the commits in pull request with the authot of commits and date.
Hello!
Commits are not stored in the database.
Git is a file based system. When you have a repository on your local PC all information about branches and commits are stored in the .git directory.
The same goes for Bitbucket. Bitbucket stores all you repositories in the server storage.
Luckily Bitbucket has a REST API that can be used for getting PR information. Take a look at this one, it might be what you need. Get pull request commits. It returns a list of commits with the authors.
IF I understood you correctly, then it is impossible to get data about the commit and its author using sql query?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Indeed. Because commits are not in the SQL database.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, commits are on the database. Using PR_ID i could find all the commits in the pull request in the table BB_PR_COMMIT...and the challenge of author the commits, in the case the author of pull request and commits differ..:(
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.