diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-01 17:04:37 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-01 17:04:37 -0800 |
commit | 2a4088119cf41175457414dfa59bd4064b8f0562 (patch) | |
tree | 64fe184e399f9870ebd481a90eec34d51e5dff68 /archive/1.vm/new_lesson | |
parent | 23fd294d85959c6b476bcdc35ed6ad508cc99b8f (diff) | |
download | mu-2a4088119cf41175457414dfa59bd4064b8f0562.tar.gz |
5852
Diffstat (limited to 'archive/1.vm/new_lesson')
-rwxr-xr-x | archive/1.vm/new_lesson | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/archive/1.vm/new_lesson b/archive/1.vm/new_lesson new file mode 100755 index 00000000..3642b823 --- /dev/null +++ b/archive/1.vm/new_lesson @@ -0,0 +1,15 @@ +#!/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 |