Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [subversive-dev] History of a file

Dear Fabian, 

You can get revisions in the following way:

SVNRepositoryFile file = ...;
GetLogMessagesOperation logOp = new GetLogMessagesOperation(file, false
/*stop on copy*/);
ProgressMonitorUtility.doTaskExternal(logOp, new NullProgressMonitor());
SVNLogEntry []revs = logOp.getMessages();


Best regards,
Alexander Gurov
Subversive Team

-----Original Message-----
From: subversive-dev-bounces@xxxxxxxxxxx
[mailto:subversive-dev-bounces@xxxxxxxxxxx] On Behalf Of Fabian
Sent: Monday, March 10, 2008 11:16 AM
To: subversive-dev@xxxxxxxxxxx
Subject: [subversive-dev] History of a file

Hi, out there, i need a programmatic way to get a list of all revision which
contain a specific file (given as SVNRepositoryFile)

would be great if somebody may help me with this.

Fabian
_______________________________________________
subversive-dev mailing list
subversive-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/subversive-dev






Back to the top