COPYING: Add MIT license for this project
authorW. Trevor King <wking@tremily.us>
Fri, 29 Nov 2013 22:41:14 +0000 (14:41 -0800)
committerW. Trevor King <wking@tremily.us>
Fri, 29 Nov 2013 22:59:11 +0000 (14:59 -0800)
commite8051dc5817443a3078ff344478b92f3c164c1ab
tree7443517d113e8127d87547786373286b41b2da57
parentc481fb53fed237d109528fb3bc4fe95f821d3e65
COPYING: Add MIT license for this project

The text is from http://opensource.org/licenses/mit-license.html.  I
haven't made any local changes yet, so the `<year>` and `<copyright
holders>` markers are still there.

Because I'm not sure I want to use this license yet (maybe I'll use
the BSD license instead?), I've started a new branch for this commit:

  $ git checkout -b mit-license master

That creates a new branch `mit-license` based on the current `master`
and checks out the new branch.  You can see which branch you're
usually on using `git branch`:

  $ git branch
  * mit-license
    master

The asterix marks the active branch.  Once we've checked out the new
branch, creating commits is just like it used to be:

  $ git add COPYING
  $ git commit

Projects usually include licensing information like this explaining
the terms under which others are allowed to make changes.  The file is
often called COPYING or LICENSE.  The Open Source Initiative has a
list of popular licenses [1], as does the Free Software Foundation
[2].

[1]: http://opensource.org/licenses/
[2]: http://www.gnu.org/licenses/license-list.html
COPYING [new file with mode: 0644]