about summary refs log tree commit diff stats
path: root/412render-float-decimal.mu
Commit message (Expand)AuthorAgeFilesLines
* 7842 - new directory organizationKartik K. Agaram2021-03-031-0/+597
a7853c44328f1bf85c1'>^
ba838fea ^
2c53c3d0 ^







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