How do I compare two revisions in Crucible?

Richard Cross March 16, 2018

I'm trying to create a search between two revision numbers in a Subversion repository in Fisheye.  Basically, the equivalent of running something like:

 

svn log -r 12:15

 

I looked at the documentation for EyeQL, but there's no mentinon of revision numbers - it seems to suggest you can only compare tags.

Is that right, or is there some other way to achieve the above?

1 answer

0 votes
Felipe Kraemer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 16, 2018

Hi @Richard Cross,

According to the EyeQL reference guide you can show a range of revisions with a query like the following:

select revisions
where csid = 12 or csid = 13 or csid = 14 or csid = 15
order by date desc
return path, revision, author, date, csid, comment

For instance, CSID in the query above means "ChangeSet ID".

Hopefully this helps!

Richard Cross March 19, 2018

Well, this is expressing individual changesets rather than a range.  If I want to show all the revisions from version 100 to 200, that expression is going to get rather messy.

 

I think I will be be better off using the Subversion command line as I described above in my original post.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events