]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-relink.txt
Merge git://git.bogomips.org/git-svn
[thirdparty/git.git] / Documentation / git-relink.txt
1 git-relink(1)
2 =============
3
4 NAME
5 ----
6 git-relink - Hardlink common objects in local repositories
7
8 SYNOPSIS
9 --------
10 'git relink' [--safe] <dir>... <master_dir>
11
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.
17
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.
23
24 <dir>::
25 Directories containing a .git/objects/ subdirectory.
26
27 GIT
28 ---
29 Part of the linkgit:git[1] suite