From: Ævar Arnfjörð Bjarmason Date: Tue, 16 Feb 2010 17:33:43 +0000 (+0000) Subject: Don't recommend that people manually fiddle with their F<.git/config>, instead they... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=11ed6e28a169ef2af505091c775fd42b76312920;p=p5sagit%2Fp5-mst-13.2.git Don't recommend that people manually fiddle with their F<.git/config>, instead they should edit it with L --- diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod index 36d918f..a02b6d5 100644 --- a/pod/perlrepository.pod +++ b/pod/perlrepository.pod @@ -63,16 +63,11 @@ This clones the repository and makes a local copy in the F directory. If you cloned using the git protocol, which is faster than ssh, then -you will need to modify your config in order to enable pushing. Edit -F<.git/config> where you will see something like: +you will need to modify the URL for the origin remote to enable +pushing. To do that edit F<.git/config> with L like +this: - [remote "origin"] - url = git://perl5.git.perl.org/perl.git - -change that to something like this: - - [remote "origin"] - url = ssh://perl5.git.perl.org/perl.git + git config remote.origin.url ssh://perl5.git.perl.org/perl.git You can also set up your user name and e-mail address. For example