From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 31670C6E for ; Sat, 24 Aug 2019 23:04:57 +0000 (UTC) Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 3BB9EB0 for ; Sat, 24 Aug 2019 23:04:54 +0000 (UTC) Date: Sat, 24 Aug 2019 19:04:47 -0400 From: "Theodore Y. Ts'o" To: Linus Torvalds Message-ID: <20190824230447.GA5163@mit.edu> References: <20190823151843.GH8130@mit.edu> <20190823161947.GA112509@dtor-ws> <20190823164602.GB112509@dtor-ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Cc: Joel Fernandes , Barret Rhoden , ksummit , Greg Kroah-Hartman , Jonathan Nieder , Tomasz Figa , Han-Wen Nienhuys , Theodore Tso , David Rientjes , Dmitry Torokhov , Dmitry Vyukov Subject: Re: [Ksummit-discuss] Allowing something Change-Id (or something like it) in kernel commits List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Sat, Aug 24, 2019 at 11:11:32AM -0700, Linus Torvalds wrote: > The first time it gets magically and reliably created for you without > you having to do a single thing. The second time, you just look it up. Also, if you don't want to look it up, and want to have it generated "locally", the Message-Id is generated locally by git send-email. (That's right, Message-Id's are just as easy to generate locally as UUID's.) It will look like this: Message-Id: <20190824223355.12947-1-tytso@mit.edu> So if someone wants to make life easier for people who want to send out the V2 version of the patch, it would be possible for someone to write some tooling which saves the generated Message-Id by git send-email (and if you generate the message id and drop it into the files generated by git format-patch, git send-email will use the generated message id), so that can get used for the git commit description for the next version of the commit, this can be done in a completely automated way, without having to do any kind of lookups. As far as I'm concerned, Message-Id's or Link's are both strictly superior than a random 16-byte Change-Id UUID. - Ted