Differences between revisions 1 and 8 (spanning 7 versions)
Revision 1 as of 2005-08-22 15:40:29
Size: 713
Comment:
Revision 8 as of 2014-02-17 00:19:57
Size: 0
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= 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
}}}

Commit our work (create changeset)

{{{
mkdir ../orig
mkdir ../changesets
tinyrcs commit ../orig . ../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 commit
}}}

...or a simpler way...

{{{
tinyrcs updatecommit
}}}