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