CARVIEW |
Select Language
HTTP/2 200
date: Sat, 19 Jul 2025 19:53:05 GMT
content-type: text/html; charset=utf-8
content-length: 4575
server: cloudflare
accept-ranges: bytes
last-modified: Sat, 19 Jul 2025 04:45:06 GMT
access-control-allow-origin: *
etag: W/"687b22d2-5924"
expires: Sat, 19 Jul 2025 20:03:05 GMT
cache-control: max-age=14400
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 3FFA:1AAB60:B5FEA:DFCBA:687BF7A0
via: 1.1 varnish
x-served-by: cache-maa10239-MAA
x-cache: MISS
x-cache-hits: 0
x-timer: S1752954785.207762,VS0,VE217
vary: Accept-Encoding
x-fastly-request-id: 699c7b5e1d8af2ad0a2b7e6883d536420daa6387
cf-cache-status: MISS
cf-ray: 961cc34f4ed675e9-BLR
Git - git-write-tree Documentation
English ▾
Localized versions of git-write-tree manual
Topics ▾
Email
Latest version
▾
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 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
write-tree
