diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-05-21 11:00:33 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-05-21 11:00:33 -0700 |
commit | 61c025b11ed4ddd002f09f061fd77c75d8b6d0ba (patch) | |
tree | 47ea6156bc5224b93f45c153286b3ca7375d2ee4 /new_lesson | |
parent | 395e2128a4155549a08dfcea47db7a5f7d8b2005 (diff) | |
download | mu-61c025b11ed4ddd002f09f061fd77c75d8b6d0ba.tar.gz |
2995
Diffstat (limited to 'new_lesson')
-rwxr-xr-x | new_lesson | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/new_lesson b/new_lesson new file mode 100755 index 00000000..73f126ba --- /dev/null +++ b/new_lesson @@ -0,0 +1,15 @@ +#!/bin/bash +# Run this before a fresh project for '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 +touch recipes.mu +git add . +git commit -m 0 |