About fossil.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 12 Oct 2010 15:06:02 +0300
changeset 603 163bb1e892b6
parent 602 fc01fedc5b17
child 604 adf8887834aa
About fossil.
fossil.rst
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fossil.rst	Tue Oct 12 15:06:02 2010 +0300
@@ -0,0 +1,37 @@
+-*- mode: outline -*-
+
+* Simple work flow.
+
+  $ mkdir proj
+  $ cd proj
+  $ fossil new proj
+project-id: 3ec2bca6e6ee450ee4763d3ec43c7023e4f8fe92
+server-id:  2a7bacb2b49cd97e71753697f7e116fda9fc199c
+admin-user: user (initial password is "f8362e")
+  $ ls .
+proj
+  $ fossil open proj
+  $ ls .
+_FOSSIL_
+proj
+  $ touch hello.c
+  $ fossil add hello.c
+ADDED  hello.c
+  $ fossil ci -m init
+New_Version: dc0f9cd1e8fc4ec2cd580c5fc231030313b91107
+  $ echo "#define TRUE 1" >>hello.c
+  $ fossil diff
+...
+  $ fossil status
+...
+  $ fossil ci -m "fixed bug"
+...
+  $ fossil timeline
+...
+  $ fossil leaves
+...
+  $ fossil ls
+hello.c
+  $ fossil branch list
+=== 2010-10-12 ===
+10:45:13 [a71787083b] initial empty check-in (user: user tags: trunk)