From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/81226 Path: news.gmane.org!not-for-mail From: Steinar Bang Newsgroups: gmane.emacs.gnus.general Subject: Re: Just a bit confused about following gnus devel branch Date: Mon, 06 Feb 2012 07:34:57 +0100 Organization: Probably a good idea Message-ID: <87mx8wtqpa.fsf@dod.no> References: <87zkcxpggu.fsf@newsguy.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1328510207 28100 80.91.229.3 (6 Feb 2012 06:36:47 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 6 Feb 2012 06:36:47 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M29507@lists.math.uh.edu Mon Feb 06 07:36:43 2012 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RuIBv-0002sV-Fu for ding-account@gmane.org; Mon, 06 Feb 2012 07:36:43 +0100 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 1RuIB0-0003l2-0i; Mon, 06 Feb 2012 00:35:46 -0600 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 1RuIAs-0003kq-Q7 for ding@lists.math.uh.edu; Mon, 06 Feb 2012 00:35:38 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.76) (envelope-from ) id 1RuIAU-0008FB-Oo for ding@lists.math.uh.edu; Mon, 06 Feb 2012 00:35:37 -0600 Original-Received: from plane.gmane.org ([80.91.229.3]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1RuIAS-0007cj-Np for ding@gnus.org; Mon, 06 Feb 2012 07:35:12 +0100 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1RuIAS-0002Pg-Ek for ding@gnus.org; Mon, 06 Feb 2012 07:35:12 +0100 Original-Received: from cm-84.208.231.161.getinternet.no ([84.208.231.161]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 06 Feb 2012 07:35:12 +0100 Original-Received: from sb by cm-84.208.231.161.getinternet.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 06 Feb 2012 07:35:12 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: ding@gnus.org Original-Lines: 20 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: cm-84.208.231.161.getinternet.no Mail-Copies-To: never User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/23.3 (gnu/linux) Cancel-Lock: sha1:82FYRAI6U7lf5OuaZp138M6XWQY= X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:81226 Archived-At: >>>>> Harry Putnam : > Can someone say definitively, what git command is required now to > start and continue tracking the development branch of gnus? mkdir ~/git/ git clone http://git.gnus.org/gnus.git cd gnus ./configure make; cd lisp; make tags If you do "git branch" in the ~/git/gnus/ directory, you will see that you are on the master branch. This is where gnus development will take place. To update, I do these two commands: (cd ~/git/gnus; git pull) (cd ~/git/gnus; make clean; make; cd lisp; make tags)