blame.c: Properly initialize strbuf after calling, textconv_object()
[git/dscho.git] / Documentation / git-relink.txt
blob25ff8f9dcbe0db52675338f1429e9169052b9cf1
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>]\* <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 Author
28 ------
29 Written by Ryan Anderson <ryan@michonline.com>
31 Documentation
32 --------------
33 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
35 GIT
36 ---
37 Part of the linkgit:git[1] suite