Search code examples
svnversion-controlenterprise-architectconfiguration-management

Enterprise Architect: View the whole project's Subversion File History


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.


Solution

  • 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.