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

Benjamin Kaduk <kaduk@mit.edu> Thu, 10 October 2019 20:13 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 E91D5120089 for <ietf-and-github@ietfa.amsl.com>; Thu, 10 Oct 2019 13:13:16 -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 bR8NYvWZHhHY for <ietf-and-github@ietfa.amsl.com>; Thu, 10 Oct 2019 13:13:15 -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 392F2120125 for <ietf-and-github@ietf.org>; Thu, 10 Oct 2019 13:13:15 -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 x9AKD8cL011905 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 10 Oct 2019 16:13:10 -0400
Date: Thu, 10 Oct 2019 13:13:08 -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: <20191010201308.GM76545@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> <20191008155043.GI76545@kduck.mit.edu> <0b630a19-de75-b2b8-e566-f884106f4264@gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Disposition: inline
In-Reply-To: <0b630a19-de75-b2b8-e566-f884106f4264@gmail.com>
User-Agent: Mutt/1.12.1 (2019-06-15)
Archived-At: <https://mailarchive.ietf.org/arch/msg/ietf-and-github/d8u8vsA-KitOpZMeyEanlvYva-8>
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: Thu, 10 Oct 2019 20:13:17 -0000

On Wed, Oct 09, 2019 at 08:12:31AM +1300, Brian E Carpenter wrote:
> Hi ben,
> On 09-Oct-19 04:50, Benjamin Kaduk wrote:
> > 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.
> 
> Are they well documented? In any case it seems that I am right about non-portability.

The subsystem for linux is probably the right answer here (thanks, Mike!)
but for completeness: Microsoft seems to have nmake docs at
https://docs.microsoft.com/en-us/cpp/build/reference/nmake-reference?view=vs-2019
which presumably are comparable to most of Microsoft's docs.  I've never
actually used jot myself, so I can't say much more about it than people use
it in order to do parallel builds (not possible with nmake).

-Ben