oh-my-git/levels/bottom-up/ref-remove/start

11 lines
283 B
Text
Raw Normal View History

2020-09-15 22:35:14 +02:00
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/best_blob_ever "$BLOB1"
git update-ref refs/beautiful_commit "$COMMIT"