Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating a Crucible review for a whole project

I'm looking a way to create a code review on a whole project/branch, independently if the files that has been modified and the usual revisions paradigm.

Basically, I want a review without diffs that will present the latest version of the code including files unchanged for months/years, or even not changed at all (in a given branch, so identical from the trunk from where it was copied).

I'm using SVN with the usual trunk/tags/branches standard.

Thanks,

like image 494
Martin Avatar asked Sep 04 '13 15:09

Martin


1 Answers

The compiledammit URL is broken, and SO guidelines state that answers with actual code/instructions are preferred over those that just reference a link, so here's what I figured out myself:

select revisions from dir /your-project-name
where is head
and not is deleted
group by path

EyeQL latest reference guide: https://confluence.atlassian.com/fisheye/eyeql-reference-guide-298976796.html

like image 60
Abhijit Sarkar Avatar answered Oct 23 '22 19:10

Abhijit Sarkar