Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I diff a branch to the trunk revision it started from in Crucible?

I am wondering how, using Crucible, I can include diff files that only contain the changes made in the branch from the point I branched off from my trunk. Currently, if I include something like change sets it counts every file in the branch as a new file and consequently doesn't show any diffs. Is there a way to do this?

I know I can go and select each file to do a diff from the branch version to the last trunk version but this would be very time consuming for the number of files I changed and I'd worry I might forget one. Is there a better way?

like image 300
AHungerArtist Avatar asked Jan 05 '12 17:01

AHungerArtist


1 Answers

Fisheye has a SQL like query langage called EyeQL, you can construct a query to find all files modified on a branch

select revisions where modified on branch branch_name group by changeset
like image 167
thekbb Avatar answered Sep 24 '22 00:09

thekbb