cheet-sheet.md: Add a Git-specific cheat sheet v1.0
authorW. Trevor King <wking@tremily.us>
Mon, 10 Jun 2013 16:54:29 +0000 (12:54 -0400)
committerW. Trevor King <wking@tremily.us>
Sat, 30 Nov 2013 00:10:05 +0000 (16:10 -0800)
commit36d8c70185937c89de0818b67eee54522592feab
tree261a233f05f6fbbcb72900aedb04260adf0ebe9a
parent3ba6fc98e65521690c44858ac1056704ac445d51
cheet-sheet.md: Add a Git-specific cheat sheet

READMEs and COPYING are all well and good, but this project will
probably make more sense if it has some actual content that it's
trying to development.  I'll use the cheat sheet from
http://git.tremily.us/?p=swc-version-control-git.git as an example,
but this would usually be a paper you're writing or code you're using
in your research, or something else you find interesting.

After writing the file in your text editor, staging and committing it
is the usual:

  $ git add cheat-sheet.md
  $ git commit --all --verbose

The long form options (`--all` and `--verbose`) also have short-form
aliases (`-a` and `-v`), which is why the cheat sheet suggests:

  $ git commit -a ...

That is the same as:

  $ git commit --all ...

Because I think this commit gets things into a useful state, I'll tag
it as version 1.0 and release it to the world.  You can tag the last
commit with:

  $ git tag v1.0
cheat-sheet.md [new file with mode: 0644]