Re: [Ietf-and-github] Seeking feedback on draft-ietf-git-using-github and Git tutorial

Benjamin Kaduk <kaduk@mit.edu> Tue, 08 October 2019 15:50 UTC

Return-Path: <kaduk@mit.edu>
X-Original-To: ietf-and-github@ietfa.amsl.com
Delivered-To: ietf-and-github@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id A85121200B1 for <ietf-and-github@ietfa.amsl.com>; Tue, 8 Oct 2019 08:50:53 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -4.2
X-Spam-Level:
X-Spam-Status: No, score=-4.2 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ryxtoleV8aGS for <ietf-and-github@ietfa.amsl.com>; Tue, 8 Oct 2019 08:50:51 -0700 (PDT)
Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id A5D4A12003F for <ietf-and-github@ietf.org>; Tue, 8 Oct 2019 08:50:51 -0700 (PDT)
Received: from kduck.mit.edu ([24.16.140.251]) (authenticated bits=56) (User authenticated as kaduk@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id x98FoiRq001586 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 8 Oct 2019 11:50:46 -0400
Date: Tue, 08 Oct 2019 08:50:43 -0700
From: Benjamin Kaduk <kaduk@mit.edu>
To: Brian E Carpenter <brian.e.carpenter@gmail.com>
Cc: Christopher Wood <caw@heapingbits.net>, ietf-and-github@ietf.org
Message-ID: <20191008155043.GI76545@kduck.mit.edu>
References: <81307dc9-b275-4305-84d8-3a602ab271f5@www.fastmail.com> <BBCDB401-F370-419B-824D-74067EAD7F0F@apple.com> <53279a4d-4b29-4ed0-9db7-ae74e61133f7@gmail.com> <31c0f8c6-f148-4e38-88bd-3174bce1477f@www.fastmail.com> <70805425-33d6-b7b5-cb66-459bef7f914a@gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: inline
In-Reply-To: <70805425-33d6-b7b5-cb66-459bef7f914a@gmail.com>
User-Agent: Mutt/1.12.1 (2019-06-15)
Archived-At: <https://mailarchive.ietf.org/arch/msg/ietf-and-github/pgTBgUECSu3iv7KBXiiRiWNNmEg>
Subject: Re: [Ietf-and-github] Seeking feedback on draft-ietf-git-using-github and Git tutorial
X-BeenThere: ietf-and-github@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: "Discussion of using GitHub in IETF activities, particularly for Working Groups" <ietf-and-github.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/ietf-and-github>, <mailto:ietf-and-github-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/ietf-and-github/>
List-Post: <mailto:ietf-and-github@ietf.org>
List-Help: <mailto:ietf-and-github-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/ietf-and-github>, <mailto:ietf-and-github-request@ietf.org?subject=subscribe>
X-List-Received-Date: Tue, 08 Oct 2019 15:50:54 -0000

On Sun, Oct 06, 2019 at 08:51:16AM +1300, Brian E Carpenter wrote:
> 
> My experience is that the desktop app is sufficient for most purposes; it's pretty rare that I have to use the CLI. Incidentally, make is a Unixism that doesn't exist in Windows. So that part of the tool chain isn't portable afaik.

nmake and jom exist, though most projects I work with end up with separate
makefiles for windows and unix usage because the needed rules for
compiling/linking C are so different.

-Ben