1git-build-rev-cache(1) 2====================== 3 4NAME 5---- 6git-build-rev-cache - Create or update a rev-cache file. 7 8SYNOPSIS 9-------- 10'git-build-rev-cache' [-v] <rev-cache-file> < list-of-heads 11 12DESCRIPTION 13----------- 14Creates or updates a file that describes the commit ancestry reachable 15from the list-of-head read from stdin. This file is in an append-only 16binary format to make the server side friendly to rsync mirroring 17scheme, and can be read by the git-show-rev-cache command. 18 19OPTIONS 20------- 21-v:: 22 Verbose. 23 24<rev-cache-file>:: 25 The rev-cache to operate on. 26 27Author 28------ 29Written by Junio C Hamano <junkio@cox.net> 30 31Documentation 32-------------- 33Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. 34 35GIT 36--- 37Part of the link:git.html[git] suite 38