1git-write-tree(1) 2================= 3v0.1, May 2005 4 5NAME 6---- 7git-write-tree - Creates a tree from the current cache 8 9 10SYNOPSIS 11-------- 12'git-write-tree' 13 14DESCRIPTION 15----------- 16Creates a tree object using the current cache. 17 18The cache must be merged. 19 20Conceptually, "git-write-tree" sync()s the current directory cache contents 21into a set of tree files. 22In order to have that match what is actually in your directory right 23now, you need to have done a "git-update-cache" phase before you did the 24"git-write-tree". 25 26 27 28 29//////////////////////////////////////////////////////////////// 30 31Producing man pages and html 32 33To create a set of html pages run: 34 perl split-docs.pl -html < core-git.txt 35 36To create a set of man pages run: 37 perl split-docs.pl -man < core-git.txt 38 39 40//////////////////////////////////////////////////////////////// 41Author 42------ 43Written by Linus Torvalds <torvalds@osdl.org> 44 45Documentation 46-------------- 47Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. 48 49GIT 50--- 51Part of the link:git.html[git] suite 52