CARVIEW |
Select Language
HTTP/2 200
date: Tue, 14 Oct 2025 06:09:54 GMT
content-type: text/html; charset=utf-8
content-length: 4639
server: cloudflare
x-origin-cache: HIT
last-modified: Tue, 14 Oct 2025 04:40:37 GMT
access-control-allow-origin: *
etag: W/"68edd445-5a11"
expires: Tue, 14 Oct 2025 06:19:54 GMT
cache-control: max-age=14400
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 5118:35FE2E:46A17:586FA:68EDE932
accept-ranges: bytes
age: 0
via: 1.1 varnish
x-served-by: cache-bom-vanm7210049-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760422195.699725,VS0,VE285
vary: Accept-Encoding
x-fastly-request-id: 6c96c9f89b537587bae309083899c3bc63381396
cf-cache-status: MISS
cf-ray: 98e4e91c6f839dfd-BLR
Git - git-write-tree Documentation
English ▾
Localized versions of git-write-tree manual
Topics ▾
Email
Version 2.0.5
▾
git-write-tree last updated in 2.50.0
Changes in the git-write-tree manual
Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Server Admin
Guides
- gitattributes
- Command-line interface conventions
- Everyday Git
- Frequently Asked Questions (FAQ)
- Glossary
- Hooks
- gitignore
- gitmodules
- Revisions
- Submodules
- Tutorial
- Workflows
- All guides...
Administration
Plumbing Commands
- 2.50.1 → 2.51.0 no changes
-
2.50.0
2025-06-16
- 2.1.4 → 2.49.1 no changes
-
2.0.5
2014-12-17
DESCRIPTION
Creates a tree object using the current index. The name of the new tree object is printed to standard output.
The index must be in a fully merged state.
Conceptually, git write-tree sync()s the current index contents into a set of tree files. In order to have that match what is actually in your directory right now, you need to have done a git update-index phase before you did the git write-tree.
OPTIONS
- --missing-ok
-
Normally git write-tree ensures that the objects referenced by the directory exist in the object database. This option disables this check.
- --prefix=<prefix>/
-
Writes a tree object that represents a subdirectory <prefix>. This can be used to write the tree object for a subproject that is in the named subdirectory.
GIT
Part of the git[1] suite