Documentation / git-relink.txton commit merge-recursive: Fix code checking for D/F conflicts still being present (f2507b4)
   1git-relink(1)
   2=============
   3
   4NAME
   5----
   6git-relink - Hardlink common objects in local repositories
   7
   8SYNOPSIS
   9--------
  10'git relink' [--safe] <dir>... <master_dir>
  11
  12DESCRIPTION
  13-----------
  14This will scan 1 or more object repositories and look for objects in common
  15with a master repository. Objects not already hardlinked to the master
  16repository will be replaced with a hardlink to the master repository.
  17
  18OPTIONS
  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
  27GIT
  28---
  29Part of the linkgit:git[1] suite