From owner-freebsd-git@freebsd.org Fri Dec 11 01:58:21 2020 Return-Path: Delivered-To: freebsd-git@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1DC024BF302 for ; Fri, 11 Dec 2020 01:58:21 +0000 (UTC) (envelope-from lwhsu@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 4CsYpj0H44z4cym for ; Fri, 11 Dec 2020 01:58:21 +0000 (UTC) (envelope-from lwhsu@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 092F04BF128; Fri, 11 Dec 2020 01:58:21 +0000 (UTC) Delivered-To: git@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 08F604BEED3 for ; Fri, 11 Dec 2020 01:58:21 +0000 (UTC) (envelope-from lwhsu@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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 (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CsYph6sNTz4d9l; Fri, 11 Dec 2020 01:58:20 +0000 (UTC) (envelope-from lwhsu@freebsd.org) Received: from mail-yb1-f182.google.com (mail-yb1-f182.google.com [209.85.219.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: lwhsu/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id D8F53BA37; Fri, 11 Dec 2020 01:58:20 +0000 (UTC) (envelope-from lwhsu@freebsd.org) Received: by mail-yb1-f182.google.com with SMTP id v67so6666690ybi.1; Thu, 10 Dec 2020 17:58:20 -0800 (PST) X-Gm-Message-State: AOAM531yYqZjvW6OcsKRP/fDkxSdZMkkMjV2rRcRJbbfRDxGp8Somk/R lXfL0E20radzL/yjEk7JnItclpF+enSbScUGrD8= X-Google-Smtp-Source: ABdhPJx2ud0sxlGLig8DmX5wjixriBkq73tVg6Q9ieS4wK3f6htQjk/3VIi/Irt50HYtFGVN28IehGDDsD5IPdZ5bmQ= X-Received: by 2002:a25:bb8f:: with SMTP id y15mr16069688ybg.451.1607651900241; Thu, 10 Dec 2020 17:58:20 -0800 (PST) MIME-Version: 1.0 References: <20201210223443.GA64504@freefall.freebsd.org> In-Reply-To: <20201210223443.GA64504@freefall.freebsd.org> From: Li-Wen Hsu Date: Fri, 11 Dec 2020 09:58:08 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svnadmin equivalent? To: Rene Ladan Cc: git@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-git@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Discussion of git use in the FreeBSD project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Dec 2020 01:58:21 -0000 On Fri, Dec 11, 2020 at 6:34 AM Rene Ladan wrote: > where did the equivalent of svnadmin end up for the doc repository > now that it has been converted to git? Most of the content in svnadmin is not so useful in git, so only access and mentors files (including their history) are preserved in an "orphan branch" in git, internal/admin. Other config files like approvers will be converted to a new format to match the philosophy and the hooks under development. They will be added to the internal/admin branch when we open more workflows. > I tend to use this with my Grim Reaper hat on to see if former > ports committers are also active in doc or src, and for ports when > they became ports committer for the Developer Alumni section in the > Contributors Guide. Full information is available at https://github.com/freebsd/git_conv#gimme-the-repo Here is how I check out the internal/admin branch (to "admin" local branch): git config --add remote.origin.fetch '+refs/internal/*:refs/internal/*' git fetch git checkout -b admin internal/admin For browsing in cgit: https://cgit-dev.freebsd.org/doc/log/?h=internal/admin Best, Li-Wen