File asString: unable to read file 'downloads/git/_visible'

Label                 Line 	 Char 	 Message
------------------------------------------------
menu                  71 	 1506 	 asString
menu                  219 	 5323 	 name
menu                  252 	 6232 	 parentTable
menu                  131 	 2773 	 allMenus
menu                  389 	 9787 	 displayHeader



Source control on the dev repo is available using git.

checkout:

git clone git://github.com/stevedekorte/io.git
update:
git pull 
record a change:
git commit -a
Ideally, you'll set up a github or your own repo I can pull from, but if you prefer to send an Email patch, here's how to do it:

git format-patch HEAD^
[prints out patch names]
git send-email --to steve@dekorte.com 'patch name'
All contributions are considered to be submitted under a public domain license.

apply patch:

git apply patchfile.txt
unapplying last patch:
git reset --hard HEAD^