From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/69534 Path: news.gmane.org!not-for-mail From: Ted Zlatanov Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus Git repository info and comitters: need updated password Date: Wed, 14 Apr 2010 06:07:48 -0500 Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos Message-ID: <87eiiijnqz.fsf@lifelogs.com> References: <87sk71o198.fsf@lifelogs.com> <87bpdpgsj9.fsf@gate450.dyndns.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1271243302 24273 80.91.229.12 (14 Apr 2010 11:08:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 14 Apr 2010 11:08:22 +0000 (UTC) To: Ding Mailing List Original-X-From: ding-owner+M17929@lists.math.uh.edu Wed Apr 14 13:08:18 2010 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 1O20S8-0000rr-R7 for ding-account@gmane.org; Wed, 14 Apr 2010 13:08:17 +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 1O20Rw-0001EO-Ez; Wed, 14 Apr 2010 06:08:04 -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 1O20Ru-0001E6-HU for ding@lists.math.uh.edu; Wed, 14 Apr 2010 06:08:02 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.69) (envelope-from ) id 1O20Rp-0003F4-Mr for ding@lists.math.uh.edu; Wed, 14 Apr 2010 06:08:02 -0500 Original-Received: from blockstar.com ([208.100.47.114] helo=mail.blockstar.com) by quimby.gnus.org with esmtp (Exim 3.36 #1 (Debian)) id 1O20Ro-0007aZ-00 for ; Wed, 14 Apr 2010 13:07:56 +0200 Original-Received: from heechee (c-98-227-29-141.hsd1.il.comcast.net [98.227.29.141]) by mail.blockstar.com (Postfix) with ESMTP id 0422F3E0638 for ; Wed, 14 Apr 2010 06:07:52 -0500 (CDT) X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6;d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux) X-Spam-Score: -2.4 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:69534 Archived-At: For those who use the plain http repo ("git clone http://git.gnus.org/gnus.git"), make sure to remove the old clone and redo your clone. I redid it completely on the server last night (2010-04-13) so it's a clean replay of the repo.or.cz mirror now. Comitters, if you sent me an updated password it's been added (thanks!). You can test with (GIT_CURL_VERBOSE is optional): GIT_SSL_NO_VERIFY=1 GIT_CURL_VERBOSE=1 git clone https://git.gnus.org/gnus.git cd gnus git config http.sslVerify false The third line is necessary or you'll have to prefix all your Git commands with GIT_SSL_NO_VERIFY=1. If Lars gets a SSL certificate for ding.gnus.org it won't be necessary, but I'm OK with it personally. We could also install a custom CA but that's IMHO a bigger pain. If you are new to Git, you'll probably like Magit. It's a very good wrapper around basic Git functionality like staging, committing, pushing/pulling, and ammending. I use it most of the time and drop to a shell when needed. You can also use the vc-dir functionality but that's much less Git-specific so it may not work for you. I still consider this experimental so don't rely on it. We'll probably go live this week. Ted p.s. Remember to also configure your Git user.email and user.name. Here's my .gitconfig, with some convenient (I'm used to Subversion) aliases: % cat ~/.gitconfig [user] name = Ted Zlatanov email = tzz@lifelogs.com [color] diff = auto status = auto branch = auto interactive = auto [alias] st = status ci = commit co = checkout staged = "diff --cached" unstaged = diff both = "diff HEAD" oneline = "log --pretty=oneline" amend = "commit --ammend"