From nobody Sat Jan 20 14:10:33 2024 X-Original-To: freebsd-stable@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4THJKm4mqmz57CjH for ; Sat, 20 Jan 2024 14:10:36 +0000 (UTC) (envelope-from mike@karels.net) Received: from mail2.karels.net (mail2.karels.net [3.19.118.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "freebsd", Issuer "freebsd" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4THJKm03XBz4m3v for ; Sat, 20 Jan 2024 14:10:35 +0000 (UTC) (envelope-from mike@karels.net) Authentication-Results: mx1.freebsd.org; none Received: from mail2.karels.net (localhost [IPv6:0:0:0:0:0:0:0:1]) by mail2.karels.net (8.17.1/8.17.1) with ESMTP id 40KEAYwC023208; Sat, 20 Jan 2024 08:10:34 -0600 (CST) (envelope-from mike@karels.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=karels.net; s=mail2; t=1705759835; bh=UneEzmZmrxqmIVcsPwHkguORNcSYuT/0Io3MVnnbLmg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=A5rTojrhLmYDdJN+4Ydk7ZFA7UPOr5fA1cpyrhje0dOC1h8Ao71i86MQcuGmPZ+Iw Bngr2LB7vXaCfOIS7QbWCBCeQmmR+ePn4lUv5IRqpmAjtZlp5H9E2mtur0N2pR7CFH UnRQNzt9WK8kQXx0HB55neCV5lGPbXXl/7hq1cC6+OkhxmeoJerP6khOgCBOVvuPqx DSC3uJPHdBto3dvdDostrbFoZ/8zT3FCEr9xUrcKF3YYqxGuFjJvs1/GRSlxkJhvxE BEh83MqX3vAZ4k1juNcig0OQWNMOzOhuHmm/nQv9WNj2tozix+GRlmRRF3eFAmW10r KxJO1SctTQAdw== Received: from [10.0.2.130] ([73.62.165.147]) by mail2.karels.net with ESMTPSA id KAmNIlrUq2WmWgAAs/W3XQ (envelope-from ); Sat, 20 Jan 2024 08:10:34 -0600 From: Mike Karels To: Harry Schmalzbauer Cc: FreeBSD-STABLE Mailing List Subject: Re: git log - how to find out latest stable/14 breakage Date: Sat, 20 Jan 2024 08:10:33 -0600 X-Mailer: MailMate (1.14r6015) Message-ID: In-Reply-To: <33ffa70f-c61a-4a37-8c3c-164218264f16@omnilan.de> References: <33ffa70f-c61a-4a37-8c3c-164218264f16@omnilan.de> List-Id: Production branch of FreeBSD source code List-Archive: https://lists.freebsd.org/archives/freebsd-stable List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 4THJKm03XBz4m3v X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:16509, ipnet:3.16.0.0/14, country:US] On 20 Jan 2024, at 6:47, Harry Schmalzbauer wrote: > Hello, > > suddenly, there are > lib/libifconfig/libifconfig_sfp_tables.tpl.c > =C2=A0create mode 100644 lib/libifconfig/libifconfig_sfp_tables.tpl.h > =C2=A0create mode 100644 lib/libifconfig/libifconfig_sfp_tables_interna= l.tpl.h > > while lib/libifconfig/libifconfig_sfp.h > still reads > #include > > (note (new) the .tpl.h suffix). > > Neither on CLI with 'git log' nor via cgit I can figure out when/what c= ommit changed that filenames. If you do "git grep tpl.h", you will find that lib/libifconfig/Makefile h= as rules for generating the .h files from .tpl.h files. Note, the generated files= end up in the obj directory (/usr/obj/.../lib/libifconfig). The filenames did n= ot change. If you want, you could do "git blame lib/libifconfig/Makefile" to find ou= t when those lines last changed. Or you could do a "git diff" using the hash of= the last version that worked for you. What problem are you actually having? I just did a buildworld on stable/= 14 and had no problems; the .h files are in the obj directory as they should be.= > How can you all manage your daily jobs with git?!?!=C2=A0 For me as a p= art-time RCS user, git is a huge regression.=C2=A0 Never had anything to = lookup/read twice with subversion or cvs in the past, but never found out= how I'm supposed to use git.=C2=A0 I'm looking up usage again and again = and again... is it I'm getting old probably :-( I admit that git is rather more baroque than earlier VCS systems. I am b= y no means a power user, but I get by. And I'm probably older than you :). You could try a web search for "git primer" or something like that. Mike > Thanks for hints, > > -harry