oh-my-git/levels/commit-rhombus/start

6 lines
224 B
Plaintext
Raw Normal View History

2020-09-15 16:32:00 +02:00
TREE=$(git write-tree)
SOUTH=$(git commit-tree $TREE -m "South")
EAST=$(git commit-tree $TREE -m "East" -p $SOUTH)
WEST=$(git commit-tree $TREE -m "West" -p $SOUTH)
NORTH=$(git commit-tree $TREE -m "Nort" -p $EAST -p $WEST)