Reputation: 85
Is there a way to view the whole history of all the versioned packages in Enterprise architect? I am only familiar that you can view the file history for a selected package of interest
This would be useful to see a list of the latest versioned packages in the overall project.
Upvotes: 2
Views: 95
Reputation: 30662
Is there a way to view the whole history of all the versioned packages in Enterprise architect?
Try svn
command-line client or TortoiseSVN if you are on Windows. Subversion will help you view the history of changes made to certain files and projects. For example, run the command svn log https://svn.example.com/repos/MyRepository/MyProject/trunk
and the client will display all changes that mere made on /trunk
in MyProject
project in MyRepository
repository. Read more about viewing changes history in SVNBook | Examining History and TortoiseSVN Manual | Revision Log Dialog.
PS I'm not familiar with Enterprise Architect and I'm not sure about its version-control capabilities or user interface it offers.
Upvotes: 1
Reputation: 36313
Just use a suitable subversion client and see what it can offer. EA isn't doing anything else than using a VC's API.
Upvotes: 1