/experiments

Tests, experiments, etc. etc.

Primary LanguageJava

Experiment Repository 
---------------------

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 git@github.com: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 you@yourdomain.example.com

$ 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:

$ git reset --hard HEAD
-------------------------------------

Ignore list in .gitignore (in project root). Contents:

# Lines starting with '#' are considered comments.
# Ignore any file named foo.txt.
foo.txt
# Ignore (generated) html files,
*.html
# except foo.html which is maintained by hand.
!foo.html
# Ignore objects and archives.
*.[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