12
I have a development environment with an SVN server running with Visualsvn and terminals with Tortoisesvn. In this same environment I have a task control system, done in Delphi, in which the tasks are assigned to the developers.
Once a task is being executed it is necessary that the developer in charge of it provides details about the progress of the process. The problem in my opinion is that this ends up generating a certain redundancy in the process carried out by the developer, since when doing the commits in SVN it already writes in the log the process that was carried out with that working copy.
Keeping this in mind my goal would be to make sure that when writing the log on the SVN commit screen, that log text is already inserted into my database linked to that respective task in our task control system. From what I researched it is practically consensus that this process should be performed by script in the SVN post-commit event.
One problem with this fact is that the treatments of this event, from what I saw, should be done in Shell-Script, but however I do not understand Shell Script and use Linux (Because we developed with Delphi). Has anyone working with Delphi ever managed to achieve this kind of integration? If it were possible I could get the task data in the name of the branch using Regex, but I have no ideas where to start, I would appreciate suggestions.
I will review your reply right now and check if it is indeed what I need. Thank you.
– adamasan