1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-11-01 23:07:55 +01:00
git/contrib/examples
Ævar Arnfjörð Bjarmason 28654678cf perl: move CPAN loader wrappers to another namespace
Move the Git::Error and Git::Mail::Address wrappers to the
Git::LoadCPAN::Loader::* namespace, e.g. Git::LoadCPAN::Error. That
module will then either load Error from CPAN (if installed on the OS),
or use Git::FromCPAN::Error.

When I added the Error wrapper in 20d2a30f8f ("Makefile: replace
perl/Makefile.PL with simple make rules", 2017-12-10) I didn't think
about how confusing it would be to have these modules sitting in the
same tree as our normal modules. Let's put these all into
Git::{Load,From}CPAN::* to clearly distinguish them from the rest.

This also makes things a bit less confusing since there was already a
Git::Error namespace ever since 8b9150e3e3 ("Git.pm: Handle failed
commands' output", 2006-06-24).

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-03-05 10:52:28 -08:00
..
builtin-fetch--tool.c
git-am.sh Merge branch 'js/maint-am-skip-performance-regression' 2015-09-14 14:59:13 -07:00
git-checkout.sh
git-clean.sh
git-clone.sh
git-commit.sh contrib/examples/git-commit.sh: use the $( ... ) construct for command substitution 2015-12-27 15:33:13 -08:00
git-difftool.perl perl: move CPAN loader wrappers to another namespace 2018-03-05 10:52:28 -08:00
git-fetch.sh contrib/examples/git-fetch.sh: use the $( ... ) construct for command substitution 2015-12-27 15:33:13 -08:00
git-gc.sh
git-log.sh
git-ls-remote.sh
git-merge-ours.sh
git-merge.sh treewide: correct several "up-to-date" to "up to date" 2017-08-23 12:17:22 -07:00
git-notes.sh
git-pull.sh Merge branch 'pt/pull-builtin' 2015-10-14 14:30:21 -07:00
git-remote.perl
git-repack.sh contrib/examples/git-repack.sh: use the $( ... ) construct for command substitution 2015-12-27 15:33:13 -08:00
git-rerere.perl
git-reset.sh
git-resolve.sh treewide: correct several "up-to-date" to "up to date" 2017-08-23 12:17:22 -07:00
git-revert.sh contrib/examples/git-revert.sh: use the $( ... ) construct for command substitution 2015-12-27 15:33:13 -08:00
git-svnimport.perl
git-svnimport.txt
git-tag.sh
git-verify-tag.sh
git-whatchanged.sh
README

These are original scripted implementations, kept primarily for their
reference value to any aspiring plumbing users who want to learn how
pieces can be fit together.