Differences between revisions 2 and 3
Revision 2 as of 2005-11-30 15:11:00
Size: 853
Comment:
Revision 3 as of 2005-11-30 15:12:36
Size: 889
Comment:
Deletions are marked like this. Additions are marked like this.
Line 65: Line 65:
tinyrcs update ../changesets
Line 71: Line 72:
tinyrcs updatecommit tinyrcs updateupdatecommit

TinyRCS

...the stupid and simple revision control system.

Tutorial

Create a working dir

mkdir work
cd work
tinyrcs init

Make some work

echo "test" > test.txt

Tell TinyRCS we want to track this file

tinyrcs add test.txt

Fast revise of our work

tinyrcs status

Create important directories

mkdir ../orig
mkdir ../changesets

Tell tinyrcs what directory it should use as a source for diffing

tinyrcs against ../orig

Commit our work (create changeset)

tinyrcs commit ../changesets

Do some more work

echo "more work" >> test.txt

Commit it (with update of diff-dir)

cd ../orig
tinyrcs update ../changesets

cd ../work
tinyrcs update ../changesets
tinyrcs commit

...or a simpler way...

tinyrcs updateupdatecommit