mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
4 lines
227 B
Text
4 lines
227 B
Text
git write-tree
|
|
FIRST_COMMIT=$(git commit-tree 4b82 -m 'First commit :O')
|
|
SECOND_COMMIT=$(git commit-tree 4b82 -p $FIRST_COMMIT -m 'Second commit :D')
|
|
THIRD_COMMIT=$(git commit-tree 4b82 -p $SECOND_COMMIT -m 'Third commit \o/')
|