CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 01:21:25 GMT
content-type: text/html; charset=utf-8
content-length: 4731
server: cloudflare
last-modified: Fri, 10 Oct 2025 04:41:17 GMT
access-control-allow-origin: *
etag: W/"68e88e6d-5ced"
expires: Sun, 12 Oct 2025 01:31:25 GMT
cache-control: max-age=14400
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: D467:3E232F:D85F9:10B290:68EB028D
accept-ranges: bytes
age: 0
via: 1.1 varnish
x-served-by: cache-bom-vanm7210097-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1760232086.670984,VS0,VE290
vary: Accept-Encoding
x-fastly-request-id: e5bb70f442214c4d169b28d8cdc827bf5badeb46
cf-cache-status: MISS
cf-ray: 98d2c7c70ce3c179-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 → 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