VCS CheckinEnvironment Question
I'm about to write a SourceOffsite VCS Plugin and i'm stuck at "Checkin Project".
Up to now I created a CheckinEnvironment and a RevisionFactory (extends ChangeListBasedRevisionsFactory) and there i seem to have to return the modified files in the createFileToChangeMap method.
Q1: is that correct?
Q2: can i ask the LocalVcs to get a list of files that have changed?
thanks for any help
-claude
Please sign in to leave a comment.
ChangeListBasedRevisionsFactory is some standart implementation, you can use
it or implement your own (this class is used by perforce becouse perforce
can evaluate all files to be committed using change command, but cvs
implements this another way becouse cvs has to traverse whole project tree
to find all changes).
2. You can use LocalVcsCheckinEnvironment, it can be used if you're using
LocalVcs to evaluate changes
--
Olesya Smirnova
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"Claude Leuchter" <leuchter@gmx.ch> wrote in message
news:6655461.1105568542061.JavaMail.itn@is.intellij.net...
Project".
>
ChangeListBasedRevisionsFactory) and there i seem to have to return the
modified files in the createFileToChangeMap method.
>
>