diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2017-01-25 17:58:57 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-25 14:42:37 -0800 |
commit | ed21e30fef3609602481ba3630ccec636d459a21 (patch) | |
tree | 01c3124ddbd5445d347883c99dd451fad463f3a7 /Documentation | |
parent | ad36dc8b4b165bf9eb3576b42a241164e312d48c (diff) | |
download | git-ed21e30fef3609602481ba3630ccec636d459a21.tar.gz git-ed21e30fef3609602481ba3630ccec636d459a21.tar.xz |
relink: retire the command
Back in the olden days, when all objects were loose and rubber boots were
made out of wood, it made sense to try to share (immutable) objects
between repositories.
Ever since the arrival of pack files, it is but an anachronism.
Let's move the script to the contrib/examples/ directory and no longer
offer it.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-relink.txt | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Documentation/git-relink.txt b/Documentation/git-relink.txt deleted file mode 100644 index 3b33c9951..000000000 --- a/Documentation/git-relink.txt +++ /dev/null @@ -1,30 +0,0 @@ -git-relink(1) -============= - -NAME ----- -git-relink - Hardlink common objects in local repositories - -SYNOPSIS --------- -[verse] -'git relink' [--safe] <dir>... <master_dir> - -DESCRIPTION ------------ -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. - -OPTIONS -------- ---safe:: - Stops if two objects with the same hash exist but have different sizes. - Default is to warn and continue. - -<dir>:: - Directories containing a .git/objects/ subdirectory. - -GIT ---- -Part of the linkgit:git[1] suite |