summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2010-03-27 23:59:01 +0000
committerDavid Golden <dagolden@cpan.org>2010-03-27 23:15:33 -0400
commitedb9e29ef248ec0a02c5026e5184a36ff60b762b (patch)
treec76a421031addace44e21aef046aa8e23eda0436
parentfff5c6e2d16a6c4070b5580acb55b3663ed90c08 (diff)
downloadperl-edb9e29ef248ec0a02c5026e5184a36ff60b762b.tar.gz
When using a GitHub fork advice the use of Perl's Git, not GitHub's mirror
This bit me when `git pull upstream blead' didn't pull commits I knew had been commited, turned out GitHub's mirror was out of date.
-rw-r--r--pod/perlrepository.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod
index 9b0292b662..30d2cc2d3d 100644
--- a/pod/perlrepository.pod
+++ b/pod/perlrepository.pod
@@ -725,7 +725,7 @@ you should clone:
The same patch as above, using github might look like this:
% cd perl-github
- % git remote add upstream git://github.com/github/perl.git
+ % git remote add upstream git://perl5.git.perl.org/perl.git
% git pull upstream blead
% git checkout -b orange
% perl -pi -e 's{Leon Brocard}{Orange Brocard}' AUTHORS