Clear button, show arrow target if there's no node, add some goals

This commit is contained in:
Sebastian Morr 2020-09-14 15:35:30 +02:00
parent 1ea6e3b4ac
commit b1d2536bcc
10 changed files with 61 additions and 9 deletions
levels/05-ref

11
levels/05-ref/goal Normal file
View file

@ -0,0 +1,11 @@
echo hello > hello
echo world > world
BLOB1=$(git hash-object -w hello)
BLOB2=$(git hash-object -w world)
git add .
TREE=$(git write-tree)
COMMIT=$(git commit-tree $TREE -m "Initial commit")
git update-ref refs/a $BLOB1
git update-ref refs/b $BLOB2
git update-ref refs/c $TREE
git update-ref refs/d $COMMIT