2005-09-08 00:26:23 +00:00
|
|
|
git-relink(1)
|
|
|
|
=============
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 16:24:50 +00:00
|
|
|
git-relink - Hardlink common objects in local repositories
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 02:38:26 +00:00
|
|
|
[verse]
|
2010-10-08 17:31:17 +00:00
|
|
|
'git relink' [--safe] <dir>... <master_dir>
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2008-01-11 18:14:19 +00:00
|
|
|
This will scan 1 or more object repositories and look for objects in common
|
|
|
|
with a master repository. Objects not already hardlinked to the master
|
|
|
|
repository will be replaced with a hardlink to the master repository.
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-08-27 01:18:48 +00:00
|
|
|
--safe::
|
|
|
|
Stops if two objects with the same hash exist but have different sizes.
|
|
|
|
Default is to warn and continue.
|
2005-08-23 08:49:47 +00:00
|
|
|
|
2005-08-27 01:18:48 +00:00
|
|
|
<dir>::
|
|
|
|
Directories containing a .git/objects/ subdirectory.
|
2005-08-23 08:49:47 +00:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|