version-control: Add README.md and instructor.md from the guide
authorW. Trevor King <wking@tremily.us>
Mon, 10 Jun 2013 15:44:15 +0000 (11:44 -0400)
committerW. Trevor King <wking@tremily.us>
Wed, 23 Oct 2013 03:56:26 +0000 (20:56 -0700)
commitb702e7ace1cd14a6ed6441390729d59dc8f7992f
tree67b85789c99334c701978afa72eb26f3dfc20922
parent774ece7c76ba2477043254e3d2742f06ac10165b
version-control: Add README.md and instructor.md from the guide

Move instructor hints (For Instructors section) and subject outlines
("understand" and "keypoints" classes) from the instructor guide [1]
into the boot camp repository.  This is currently targeted at
Subversion, but making these notes tool-agnostic will come in the next
commit.  Here I just copy the guide content over while translating it
to Markdown.

For posterity, I've grafted on the guide history.  Here's how I
extracted the svn.html history from the guide repository:

1. Start a new branch in the earlier guide repository:

  $ git checkout -b wip d013cab

2. Limit history to svn.html:

  $ git filter-branch -f --prune-empty \
  > --index-filter 'git rm --cached --ignore-unmatch $(git ls-files | grep -v svn.html)' \
  > HEAD

3. Drop no-op merges:

  $ git rebase -i 0025ac4

Then I cherry-picked my original boot-camps commit (c1330e0) onto the
result to create this commit:

  $ git cherry-pick c1330e0
  $ git rm svn.html
  $ git commit --amend

[1]: https://github.com/swcarpentry/guide
svn.html [deleted file]
version-control/README.md [new file with mode: 0644]
version-control/instructor.md [new file with mode: 0644]