transport-helper: change import semantics
[git/dscho.git] / Documentation / git-relink.txt
blob98933764870fa73d693c636e713fd1f08eb8244d
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>... <master_dir>
12 DESCRIPTION
13 -----------
14 This will scan 1 or more object repositories and look for objects in common
15 with a master repository. Objects not already hardlinked to the master
16 repository will be replaced with a hardlink to the master repository.
18 OPTIONS
19 -------
20 --safe::
21         Stops if two objects with the same hash exist but have different sizes.
22         Default is to warn and continue.
24 <dir>::
25         Directories containing a .git/objects/ subdirectory.
27 GIT
28 ---
29 Part of the linkgit:git[1] suite