This commit is contained in:
Ryan Alexander Canete 2023-12-15 20:25:02 +02:00 committed by GitHub
commit 5c486ecce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,16 @@
# git mktree
> Build a tree object using `ls-tree` formatted text.
> More information: <https://git-scm.com/docs/git-mktree>.
- 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`