From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/69555 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus Git repository info and comitters: need updated password Date: Fri, 16 Apr 2010 15:14:23 +0900 Organization: Emacsen advocacy group Message-ID: References: <87sk71o198.fsf@lifelogs.com> <87bpdpgsj9.fsf@gate450.dyndns.org> <87eiiijnqz.fsf@lifelogs.com> <87k4s83k25.fsf@lifelogs.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1271398531 27645 80.91.229.12 (16 Apr 2010 06:15:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 16 Apr 2010 06:15:31 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M17949@lists.math.uh.edu Fri Apr 16 08:15:30 2010 connect(): No such file or directory Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1O2epr-0001Sq-CW for ding-account@gmane.org; Fri, 16 Apr 2010 08:15:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1O2epb-0003ks-Fe; Fri, 16 Apr 2010 01:15:11 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1O2epX-0003ki-Vb for ding@lists.math.uh.edu; Fri, 16 Apr 2010 01:15:08 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1O2epS-0001kR-1s for ding@lists.math.uh.edu; Fri, 16 Apr 2010 01:15:07 -0500 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1O2epR-0006Pq-00 for ; Fri, 16 Apr 2010 08:15:01 +0200 Original-Received: from localhost ([127.0.0.1]:48704) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1O2eor-0000kp-PO for ding@gnus.org; Fri, 16 Apr 2010 01:14:26 -0500 X-Hashcash: 1:20:100416:ding@gnus.org::7OrhB1AIrNyeozQx:00007Eh9 X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) Cancel-Lock: sha1:JpfHdh02jppqb8DH033UQF/IPWM= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:69555 Archived-At: >>>>> Ted Zlatanov wrote: > On Thu, 15 Apr 2010 15:50:59 +0900 Katsumi Yamaoka wrote: [...] KY> Did anyone succeed in cloning the writable repo behind the firewall KY> (or http proxy)? If so, how? I haven't made good yet. Using KY> 80.91.231.55 instead of the host name made no difference, either. [...] > Behind a firewall, you can probably use the curl options (in ~/.curlrc) > to control the behavior. See GIT_CURL_VERBOSE and try to replicate what > it does when it fails. I did it! The Gnus Git repo and the Emacs trunk is now synch'd (the recent changes made in gnus.texi in the emacs-23 branch will be merged to the trunk later). First, I found I need setting of the environment variable `HTTPS_PROXY' rather than `http_proxy': export HTTPS_PROXY=proxy.example.com:8080 Second, I didn't know git-remote-https (or git-remote-curl) reads the ~/.netrc file, but it cannot handle password containing SPC. I use just such a password "PASS WORD", and I found out the only way to pass it to Git is: git clone 'https://yamaoka:PASS WORD@git.gnus.org/gnus.git' But that the ps command exposes it is bad from every point of view. I'll ask Ted to change it into the one that doesn't contain SPC. Regards,