about summary refs log blame commit diff stats
path: root/snapshot_lesson
blob: cd4723c1555c73e44d5ce378e706529131614f47 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12


                                                                            
      







                                                                     
#!/bin/sh
# Hacky little helper called from edit/ and sandbox/ apps to save a snapshot
# of lesson/ using git.
set -e

test -d lesson/.git || exit 0  # give up if it's not a git repo

cd lesson
# explicitly say '--all' for git 1.9
git add --all .
# bug in git: git diff -q messes up --exit-code
git diff HEAD --exit-code >/dev/null || git commit -a -m . >/dev/null