# HG changeset patch # User Christian Ebert # Date 1188792667 -7200 # Node ID a0b8165fcec92e443809ae69cd90542da774c879 # Parent e4a389eca1b9aa5fd6d2f988a94ce35d8dfec09c Rename README.txt to README diff -r e4a389eca1b9 -r a0b8165fcec9 README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Mon Sep 03 06:11:07 2007 +0200 @@ -0,0 +1,45 @@ +$Id$ + +keyword extension for Mercurial SCM +=================================== + +install +------- + +Either copy hgkw/keyword.py into the hgext directory of your +Mercurial installation. +Then add the lines: + +[extensions] +hgext.keyword = + +to your hgrc file. + +Or run "python setup.py install". +See also "pyton setup.py --help". +Then add the line: + +[extensions] +keyword = /path/to/hgkw/keyword.py + +to your hgrc, where /path/to/ is somewhere in your $PYTHONPATH. + + +first steps and online help +--------------------------- + +$ hg keyword help +$ hg kwdemo + + +testing +------- + +Copy hgkw/keyword.py into the hgext directory of your Mercurial +source tree. Copy tests/test-keyword, tests/test-keyword.out into +the tests directory of your Mercurial source tree. Change to that +directory and run: + +$ python run-tests.py test-keyword + +and then keep your fingers crossed ... diff -r e4a389eca1b9 -r a0b8165fcec9 README.txt --- a/README.txt Sun Sep 02 17:04:22 2007 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -$Id$ - -keyword extension for Mercurial SCM -=================================== - -install -------- - -Either copy hgkw/keyword.py into the hgext directory of your -Mercurial installation. -Then add the lines: - -[extensions] -hgext.keyword = - -to your hgrc file. - -Or run "python setup.py install". -See also "pyton setup.py --help". -Then add the line: - -[extensions] -keyword = /path/to/hgkw/keyword.py - -to your hgrc, where /path/to/ is somewhere in your $PYTHONPATH. - - -first steps and online help ---------------------------- - -$ hg keyword help -$ hg kwdemo - - -testing -------- - -Copy hgkw/keyword.py into the hgext directory of your Mercurial -source tree. Copy tests/test-keyword, tests/test-keyword.out into -the tests directory of your Mercurial source tree. Change to that -directory and run: - -$ python run-tests.py test-keyword - -and then keep your fingers crossed ...