sometimes the developers push the work related to a single ticket into different branches, the name of the branch always contain the ticket code (example: "Ticket-002_added_objects" (where "Ticket-002" is the code of the ticket). In sourceTree: if I search for "Ticket-002", it returns all the commits containing changes for the specific ticket. What I currently do to see all the changes is: create a new branch and cherry-pick the commits one-by-one (starting from the bottom). Is there a smarter way to do that?
Thanks a lot!