Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| #!/bin/sh | |
| # Run this before running './mu edit' or './mu sandbox' to make sure you don't | |
| # lose any work. | |
| # | |
| # You'll be editing code in lesson/recipes.mu, and any sandboxes you create | |
| # will be in lesson/0, lesson/1, etc., from top to bottom. | |
| set -e | |
| mkdir lesson | |
| cd lesson | |
| git init | |
| echo '**/.*.swp' > .gitignore | |
| git add . | |
| git commit -m 0 |