Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2005-08-22 15:40:29
Size: 713
Comment:
Revision 7 as of 2008-01-18 12:56:21
Size: 833
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

<<GoogleAd>>
Line 33: Line 35:
Commit our work (create changeset) Create important directories
Line 38: Line 40:
tinyrcs commit ../orig . ../changesets }}}

Commit our work (create changeset)

{{{
tinyrcs commit ../changesets --against ../orig
Line 54: Line 61:
tinyrcs update ../changesets
Line 60: Line 68:
tinyrcs updatecommit tinyrcs updateupdatecommit
Line 62: Line 70:

<<GoogleAd>>

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

Commit our work (create changeset)

tinyrcs commit ../changesets --against ../orig

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