KKLOG
KKLOG allows for documenting the changes that were made to a particular file for a given revision. Using the text editor of your choice, type your changes in a text file, and then use KKLOG to log those changes under the appropriate revision directory.
For example:
C:\> type changes.txt -Implemented and tested tasty_func(). -Fixed bug with sprinkles. C:\> KKLOG cookie.c 3 changes.txt Changes logged
The logged changes may now be viewed under _revs\3 as follows:
C:\> type _revs\3\_log.txt | more
The entry will have the following format in _log.txt, with the dollar sign ($) separating it from entries for other files:
filename.ext -lines from changes.txt $
For example:
cookie.c -Implemented and tested tasty_func(). -Fixed bug with sprinkles. $