Browse Source

Move convert-objects to contrib.

convert-objects was needed to convert from an old-style repository,
which hashed the compressed contents and used a different date format.
Such repositories are presumably no longer common and, if such
conversions are necessary, should be done by writing a frontend for
git-fast-import.

Linus, the original author, is OK with moving it to contrib.

Signed-off-by: Matt Kraai <kraai@ftbfs.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Matt Kraai 18 years ago committed by Junio C Hamano
parent
commit
2ecb5ea2ad
  1. 1
      .gitignore
  2. 1
      Documentation/cmd-list.perl
  3. 2
      Makefile
  4. 1
      contrib/completion/git-completion.bash
  5. 0
      contrib/convert-objects/convert-objects.c
  6. 0
      contrib/convert-objects/git-convert-objects.txt

1
.gitignore vendored

@ -25,7 +25,6 @@ git-clone
git-commit git-commit
git-commit-tree git-commit-tree
git-config git-config
git-convert-objects
git-count-objects git-count-objects
git-cvsexportcommit git-cvsexportcommit
git-cvsimport git-cvsimport

1
Documentation/cmd-list.perl

@ -94,7 +94,6 @@ git-clone mainporcelain
git-commit mainporcelain git-commit mainporcelain
git-commit-tree plumbingmanipulators git-commit-tree plumbingmanipulators
git-config ancillarymanipulators git-config ancillarymanipulators
git-convert-objects ancillarymanipulators
git-count-objects ancillaryinterrogators git-count-objects ancillaryinterrogators
git-cvsexportcommit foreignscminterface git-cvsexportcommit foreignscminterface
git-cvsimport foreignscminterface git-cvsimport foreignscminterface

2
Makefile

@ -233,7 +233,7 @@ SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \


# ... and all the rest that could be moved out of bindir to gitexecdir # ... and all the rest that could be moved out of bindir to gitexecdir
PROGRAMS = \ PROGRAMS = \
git-convert-objects$X git-fetch-pack$X \ git-fetch-pack$X \
git-hash-object$X git-index-pack$X git-local-fetch$X \ git-hash-object$X git-index-pack$X git-local-fetch$X \
git-fast-import$X \ git-fast-import$X \
git-daemon$X \ git-daemon$X \

1
contrib/completion/git-completion.bash

@ -299,7 +299,6 @@ __git_commands ()
check-attr) : plumbing;; check-attr) : plumbing;;
check-ref-format) : plumbing;; check-ref-format) : plumbing;;
commit-tree) : plumbing;; commit-tree) : plumbing;;
convert-objects) : plumbing;;
cvsexportcommit) : export;; cvsexportcommit) : export;;
cvsimport) : import;; cvsimport) : import;;
cvsserver) : daemon;; cvsserver) : daemon;;

0
convert-objects.c → contrib/convert-objects/convert-objects.c

0
Documentation/git-convert-objects.txt → contrib/convert-objects/git-convert-objects.txt

Loading…
Cancel
Save