Hello. I have a task that is currently solved in manual way. I'd like to automate it. The aim is to have 2 files in the repository that store the current revision number: 1 text and 1 image. For now I make these files with simple cmd script manually, that is no problem. There are several ways to reach the aim:
- The easiest one - to update the files on the client side on pre-commit with the script that is used now; then commit the files with others that are changed.
- More complicated way - to make changes on the server side. This could be:
- Making changes to the working copy after each user commit and committing these 2 files on the server side.
- Making changes to the files on the server side during the user commit on the fly.
Last updated