1
so I'm starting to use version control systems (VCS) to keep track of my growing piles of code, and am experimenting with SVN and git. The very basic commands are very similar, so I'll just use SVN as my example.
Say I have a repo with some files in it. After changing a file, I commit the change like this:
svn commit -m "altered the regex to parse properly"
This commits my changes and adds the commit message. However, what if I had just altered 3 different scripts, how can I add individualized commit messages for each of the files?
Similarly, being a version control system, I want to actually keep track of script version numbers. Let's say I start at version 1.0.0, how can I label my changed script as being v1.0.1 upon commit?
So basically, if someone could tell me how to keep track of log messages and version changes for every file when committing, I would be very grateful. Thanks!