mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
5 lines
224 B
Text
5 lines
224 B
Text
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)
|