Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-25 Thread Jeff King
On Mon, Oct 21, 2013 at 07:06:29PM +0200, arnaud brejeon wrote: > I dont know if you plan to keep GIT_ASKPASS as is, but this > environment variable is not mentioned on git svn documentation and I > guess just a few people know about it. Moreover, the name is > misleading as it handles all the pro

Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-21 Thread arnaud brejeon
I played with GIT_ASKPASS and managed to get a fully automated behavior without any user prompt. I guess that the patches are not necessary as we can provide the same , it is just less straightforward than direct parameters but I understand the security concerns. I dont know if you plan to keep

Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-15 Thread arnaud brejeon
Le 15 oct. 2013 à 01:35, Eric Wong a écrit : > Jeff King wrote: >> On Mon, Oct 14, 2013 at 06:40:05PM +, Eric Wong wrote: >> arnaud.brej...@gmail.com wrote: > Signed-off-by: Arnaud Brejeon gmail.com> Thanks. Can you say a little more about the context?

Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-14 Thread Eric Wong
Jeff King wrote: > On Mon, Oct 14, 2013 at 06:40:05PM +, Eric Wong wrote: > > > > arnaud.brej...@gmail.com wrote: > > > > > > > Signed-off-by: Arnaud Brejeon gmail.com> > > > > > > Thanks. > > > > > > Can you say a little more about the context? Do you run a script that > > > wants to pa

Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-14 Thread Jeff King
On Mon, Oct 14, 2013 at 06:40:05PM +, Eric Wong wrote: > > arnaud.brej...@gmail.com wrote: > > > > > Signed-off-by: Arnaud Brejeon gmail.com> > > > > Thanks. > > > > Can you say a little more about the context? Do you run a script that > > wants to pass a password to 'git svn', do you typ

Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-14 Thread Eric Wong
Jonathan Nieder wrote: > Hi, > > arnaud.brej...@gmail.com wrote: > > > Signed-off-by: Arnaud Brejeon gmail.com> > > Thanks. > > Can you say a little more about the context? Do you run a script that > wants to pass a password to 'git svn', do you type it each time on the > command line, or so

Re: [PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-14 Thread Jonathan Nieder
Hi, arnaud.brej...@gmail.com wrote: > Signed-off-by: Arnaud Brejeon gmail.com> Thanks. Can you say a little more about the context? Do you run a script that wants to pass a password to 'git svn', do you type it each time on the command line, or something else? Is it ok that the password woul

[PATCH 1/2] Add password parameter to git svn commands and use it when provided instead of defaulting to end-user prompt

2013-10-12 Thread arnaud . brejeon
From: arnaudbrejeon Signed-off-by: Arnaud Brejeon gmail.com> --- git-svn.perl |3 +++ perl/Git/SVN/Prompt.pm | 12 +--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/git-svn.perl b/git-svn.perl index ff1ce3d..07f0a6c 100755 --- a/git-svn.perl +++ b/git-