1git-relink(1) 2============= 3 4NAME 5---- 6git-relink - Hardlink common objects in local repositories 7 8SYNOPSIS 9-------- 10'git-relink' [--safe] <dir> <dir> [<dir>]\* 11 12DESCRIPTION 13----------- 14This will scan 2 or more object repositories and look for common objects, check 15if they are hardlinked, and replace one with a hardlink to the other if not. 16 17OPTIONS 18------- 19--safe:: 20 Stops if two objects with the same hash exist but have different sizes. 21 Default is to warn and continue. 22 23<dir>:: 24 Directories containing a .git/objects/ subdirectory. 25 26Author 27------ 28Written by Ryan Anderson <ryan@michonline.com> 29 30Documentation 31-------------- 32Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. 33 34GIT 35--- 36Part of the gitlink:git[7] suite