mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
7 lines
249 B
Text
7 lines
249 B
Text
When using the commit-tree command, you can optionally specify a parent:
|
|
|
|
git commit-tree <tree> -m "Description" -p <parent commit>
|
|
|
|
Make a string of three commits!
|
|
|
|
Hint: You'll need a tree object. What could be the easiest way to obtain one?
|