diff --git a/pages/common/git-mktree.md b/pages/common/git-mktree.md new file mode 100644 index 0000000000..211c261ae8 --- /dev/null +++ b/pages/common/git-mktree.md @@ -0,0 +1,16 @@ +# git mktree + +> Build a tree object using `ls-tree` formatted text. +> More information: . + +- Allow missing objects which bypass the default behavior that verifies each tree entry has an existing object: + +`git mktree --missing` + +- Read the NUL terminated output of the tree object: + +`git mktree -z` + +- Allow for the creation of multiple tree objects: + +`git mktree --batch`