We generally perform code reviews when an issue is resolved rather than on every single commit.
Is there any good way to do something similar to the old way in crucible where you could perform code reviews on the full source or on diffs across multiple commits?
The best way I can see is to create a "code review" branch from an old commit of the branch you were working on and then manually perform a commit of the latest version of the code to the "code review" branch. Of course this is somewhat laborious so if there is a simpler/easier process I am very interested.
The way to do this with BitBucket would be to use the ability to create pull requests.
1) Do your work on a branch.
2) When you are ready for review, go to BitBucket and create a pull request for that branch; this will provide a single point-of-review, where you can see all of the commits for the request, discuss it, request changes, and automatically merge it in once the review is completed (if you don't do that step by hand, that is)
https://confluence.atlassian.com/display/BITBUCKET/Work+with+pull+requests
(You can also request pull request via SourceTree, I think)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.