From 11ed6e28a169ef2af505091c775fd42b76312920 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 16 Feb 2010 17:33:43 +0000 Subject: [PATCH] Don't recommend that people manually fiddle with their F<.git/config>, instead they should edit it with L --- pod/perlrepository.pod | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) 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 -- 1.8.3.1