Re: git daemon usage

2005-09-05 Thread Alexey Nezhdanov
ery late answer - I was on vacation and now reading archives. I'm using it as djb's tcpserver + linus's git-daemon > > Thanks, -- Respectfully Alexey Nezhdanov - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to

Re: [PATCH] Deb Packaging fixes: Build against Mozilla libs for Debian, conflict with "git"

2005-07-23 Thread Alexey Nezhdanov
Satturday, 23 July 2005 23:26 Ryan Anderson wrote: > -Depends: ${misc:Depends}, shellutils, diff, rsync, rcs > +Depends: ${misc:Depends}, patch, diff, rsync, rcs, ssh Did I missed something or you forgot about libcurl3 dependency? -- Respectfully Alexey Nezhdanov - To unsubscribe from thi

Re: Last mile to 1.0?

2005-07-23 Thread Alexey Nezhdanov
Satturday, 23 July 2005 21:09 Junio C Hamano wrote: > Instead, please add gitk and gitweb to the list. We should not > forget that these "mostly read-only" things are Porcelains. Then add qgit too to provide fair coverage. -- Respectfully Alexey Nezhdanov - To unsubscribe from

Re: Last mile to 1.0?

2005-07-17 Thread Alexey Nezhdanov
Monday, 18 July 2005 09:35 Junio C Hamano wrote: > Alexey Nezhdanov <[EMAIL PROTECTED]> writes: > > I'd add the UTF-8 native support. Currently neither commit nor gitk > > doesn't support that. Probably this should be done at as low as possible > > level.

Re: Last mile to 1.0?

2005-07-17 Thread Alexey Nezhdanov
t support that. Probably this should be done at as low as possible level. -- Respectfully Alexey Nezhdanov - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

[offtopic]Re: "git cvsimport" with branches?

2005-07-17 Thread Alexey Nezhdanov
imported into git. Example (branch "old"): http://www.penza-gsm.ru/snake/simplexml.py,v -- Respectfully Alexey Nezhdanov - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.

Re: "git cvsimport" with branches?

2005-07-17 Thread Alexey Nezhdanov
Sunday, 17 July 2005 14:48 Alexey Nezhdanov wrote: > Sunday, 17 July 2005 13:37 Matthias Urlichs wrote: > > Hi, Wolfgang Denk wrote: > > > Is there a way to make "git cvsimport" create branches in git for any > > > branches it encounters in the CVS repository?

Re: "git cvsimport" with branches?

2005-07-17 Thread Alexey Nezhdanov
me cases. See my previous mail: http://marc.theaimsgroup.com/?l=git&m=112159075029007&w=2 It have simple script attached that reproduces the problem. -- Respectfully Alexey Nezhdanov - To unsubscribe from this list: send the line "unsubscribe git" in the body of a mes

Re: "git cvsimport" with branches?

2005-07-17 Thread Alexey Nezhdanov
Is it a planned behaivoir or cvsimport script were just recently broken? -- Respectfully Alexey Nezhdanov #!/bin/sh dirname=`date +"%Y%m%d%H%M%S"` mkdir /tmp/$dirname cd /tmp/$dirname mkdir cvsroot declare -x CVSROOT=/tmp/$dirname/cvsroot cvs init mkdir cvsroot/project

[PATCH] add inetd mode to git daemon

2005-07-14 Thread Alexey Nezhdanov
Adds --inetd command line argument that makes server run in inetd mode. Signed-off-by: Alexey Nezhdanov <[EMAIL PROTECTED]> --- diff --git a/daemon.c b/daemon.c --- a/daemon.c +++ b/daemon.c @@ -3,7 +3,7 @@ #include #include -static const char daemon_usage[] = "git-daemo