* [PATCH] git-svn: change dashed git-config to git config
@ 2008-10-23 19:21 Deskin Miller
2008-10-24 9:15 ` Eric Wong
0 siblings, 1 reply; 3+ messages in thread
From: Deskin Miller @ 2008-10-23 19:21 UTC (permalink / raw)
To: git; +Cc: normalperson
---
When testing git-svn changes, I'll often use git-svn.perl directly on a
repository of mine, to see how things work. Recently I had this happen:
$ git-svn.perl info
Use of uninitialized value in scalar chomp at ../git/git-svn.perl line 1202.
Use of uninitialized value in concatenation (.) or string at ../git/git-svn.perl line 1203.
but the expected output showed up correctly, giving the SVN-like info.
git svn info appeared to work just fine though, despite there being essentially
no difference between the two. However, if I do the following, this is what I
see:
$ env /usr/libexec/git-core/git-svn info
Can't exec "git-config": No such file or directory at /usr/libexec/git-core/git-svn line 1202.
Use of uninitialized value in scalar chomp at /usr/libexec/git-core/git-svn line 1202.
Again, the SVN info would still appear.
Regardless, I think we want to change this call to use the non-dashed form.
Deskin Miller
git-svn.perl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index 33e1b50..2e68c68 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -1126,7 +1126,7 @@ sub read_repo_config {
my $v = $opts->{$o};
my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
$key =~ s/-//g;
- my $arg = 'git-config';
+ my $arg = 'git config';
$arg .= ' --int' if ($o =~ /[:=]i$/);
$arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
if (ref $v eq 'ARRAY') {
--
1.6.0.2.554.g3041b
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] git-svn: change dashed git-config to git config
2008-10-23 19:21 [PATCH] git-svn: change dashed git-config to git config Deskin Miller
@ 2008-10-24 9:15 ` Eric Wong
2008-10-24 15:27 ` Deskin Miller
0 siblings, 1 reply; 3+ messages in thread
From: Eric Wong @ 2008-10-24 9:15 UTC (permalink / raw)
To: Deskin Miller; +Cc: git
Deskin Miller <deskinm@umich.edu> wrote:
> ---
> When testing git-svn changes, I'll often use git-svn.perl directly on a
> repository of mine, to see how things work. Recently I had this happen:
>
> $ git-svn.perl info
> Use of uninitialized value in scalar chomp at ../git/git-svn.perl line 1202.
> Use of uninitialized value in concatenation (.) or string at ../git/git-svn.perl line 1203.
>
> but the expected output showed up correctly, giving the SVN-like info.
>
> git svn info appeared to work just fine though, despite there being essentially
> no difference between the two. However, if I do the following, this is what I
> see:
>
> $ env /usr/libexec/git-core/git-svn info
> Can't exec "git-config": No such file or directory at /usr/libexec/git-core/git-svn line 1202.
> Use of uninitialized value in scalar chomp at /usr/libexec/git-core/git-svn line 1202.
>
> Again, the SVN info would still appear.
>
> Regardless, I think we want to change this call to use the non-dashed form.
Thanks Deskin,
Acked-by: Eric Wong <normalperson@yhbt.net>
> Deskin Miller
>
> git-svn.perl | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/git-svn.perl b/git-svn.perl
> index 33e1b50..2e68c68 100755
> --- a/git-svn.perl
> +++ b/git-svn.perl
> @@ -1126,7 +1126,7 @@ sub read_repo_config {
> my $v = $opts->{$o};
> my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
> $key =~ s/-//g;
> - my $arg = 'git-config';
> + my $arg = 'git config';
> $arg .= ' --int' if ($o =~ /[:=]i$/);
> $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
> if (ref $v eq 'ARRAY') {
> --
> 1.6.0.2.554.g3041b
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] git-svn: change dashed git-config to git config
2008-10-24 9:15 ` Eric Wong
@ 2008-10-24 15:27 ` Deskin Miller
0 siblings, 0 replies; 3+ messages in thread
From: Deskin Miller @ 2008-10-24 15:27 UTC (permalink / raw)
To: gitster; +Cc: git, Eric Wong
On Fri, Oct 24, 2008 at 02:15:44AM -0700, Eric Wong wrote:
> Deskin Miller <deskinm@umich.edu> wrote:
> > ---
> > When testing git-svn changes, I'll often use git-svn.perl directly on a
> > repository of mine, to see how things work. Recently I had this happen:
> >
> > $ git-svn.perl info
> > Use of uninitialized value in scalar chomp at ../git/git-svn.perl line 1202.
> > Use of uninitialized value in concatenation (.) or string at ../git/git-svn.perl line 1203.
> >
> > but the expected output showed up correctly, giving the SVN-like info.
> >
> > git svn info appeared to work just fine though, despite there being essentially
> > no difference between the two. However, if I do the following, this is what I
> > see:
> >
> > $ env /usr/libexec/git-core/git-svn info
> > Can't exec "git-config": No such file or directory at /usr/libexec/git-core/git-svn line 1202.
> > Use of uninitialized value in scalar chomp at /usr/libexec/git-core/git-svn line 1202.
> >
> > Again, the SVN info would still appear.
> >
> > Regardless, I think we want to change this call to use the non-dashed form.
>
> Thanks Deskin,
>
> Acked-by: Eric Wong <normalperson@yhbt.net>
Sorry, patch should have had a
Signed-off-by: Deskin Miller <deskinm@umich.edu>
Feel free to forge it.
> > Deskin Miller
> >
> > git-svn.perl | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/git-svn.perl b/git-svn.perl
> > index 33e1b50..2e68c68 100755
> > --- a/git-svn.perl
> > +++ b/git-svn.perl
> > @@ -1126,7 +1126,7 @@ sub read_repo_config {
> > my $v = $opts->{$o};
> > my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
> > $key =~ s/-//g;
> > - my $arg = 'git-config';
> > + my $arg = 'git config';
> > $arg .= ' --int' if ($o =~ /[:=]i$/);
> > $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
> > if (ref $v eq 'ARRAY') {
> > --
> > 1.6.0.2.554.g3041b
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-10-24 15:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-23 19:21 [PATCH] git-svn: change dashed git-config to git config Deskin Miller
2008-10-24 9:15 ` Eric Wong
2008-10-24 15:27 ` Deskin Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).