Tests, experiments, etc. etc.
Experiments, tests, random babble. Mostly a collection of "Hello World" examples for various languages.
This directory is served off 0xfe.muthanna.com.
To clone this repository (Read/Write):
$ git clone [email protected]:0xfe/experiments.git
To clone this repository (Read-Only HTTP):
$ git clone http://github.com/0xfe/experiments.git
$ git config --global user.name "Your Name Comes Here" $ git config --global user.email [email protected]
$ git config --global color.diff auto $ git config --global color.status auto $ git config --global color.branch auto
Repository administration:
To bring the local working directory in sync with HEAD:
Ignore list in .gitignore (in project root). Contents:
foo.txt
*.html
!foo.html
.[oa] ruby_sess. .*.swp .hi *.pyc
Workflow:
$ git branch newthingaby
$ git branch newthingaby * master
$ git checkout newthingaby ... do stuff ...
$ git commit -a
$ git checkout master
$ git merge newthingaby
(If conflicts, fix them, then submit.)
$ git branch -d newthingaby
$ git push