From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x342.google.com (mail-wm1-x342.google.com [IPv6:2a00:1450:4864:20::342]) by sourceware.org (Postfix) with ESMTPS id 0C9E43949D80 for ; Wed, 14 Oct 2020 15:49:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0C9E43949D80 Received: by mail-wm1-x342.google.com with SMTP id j136so51402wmj.2 for ; Wed, 14 Oct 2020 08:49:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=o7o4Wy3ztnJ8S9AbiH7H1Hjc+udZmLBAhWLq+vD6Yqw=; b=mI7vgAJZ/WF6+hXxipthyqi9RvIlRwSQAyBqR4a6Y6mq+1FJ5o7nuf8dNWpo3E1Ijr dQZpBkLi/Fo2KlxYaU/uyCyF7FjK7Wmt2PKHnWK2O48fHjMsvntL8yblcpJbcsKSzLTz jRzSbqC5WKpQU4t/dO+Jb9n2Qir7mJCuR2RTDIFi5JC+XSWNqTSq+ZWfLv3Sr9fPU6Ua jJqde38wHeWuIlGd3ObwnGg8Uz6C6f5EyXsvan/kNpsobnza6GdtEzUplTccshW18dYN +T2VKAZgUoCNTIg2j3+GIn5MY1Wcv/aO2mn6VGDE2H9AbBZJhOYZTXstJb5sxH+I7uph iaQw== X-Gm-Message-State: AOAM531xDPnk/Sf8qzmC5e7VgWyBTo2lHYn60dqrt3S4WwFFIrOrsaRP tFGVgIt8c8Ka71fOhqcrAsZ8nYRpGlT2vblHnZY= X-Google-Smtp-Source: ABdhPJwwLR2MPxVmFKl/BkTFYEzGcvKTGFvqu0F6HTl7L78E6WisVJxfVwrMJRXCUXIB9GnDW+p20u2wMYd3EAi2TkQ= X-Received: by 2002:a1c:6302:: with SMTP id x2mr49531wmb.121.1602690586962; Wed, 14 Oct 2020 08:49:46 -0700 (PDT) MIME-Version: 1.0 References: <1803667a-1281-9e8c-147c-ead91db2c3f9@simark.ca> In-Reply-To: <1803667a-1281-9e8c-147c-ead91db2c3f9@simark.ca> From: Matt Rice Date: Wed, 14 Oct 2020 15:49:34 +0000 Message-ID: Subject: Re: Regressions getting more common To: Simon Marchi Cc: Luis Machado , "gdb@sourceware.org" Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-0.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Oct 2020 15:49:49 -0000 On Wed, Oct 14, 2020 at 2:46 PM Simon Marchi wrote: > > > On 2020-10-13 9:13 p.m., Matt Rice via Gdb wrote: > > Speaking of gerrit, I noticed that the server side git hooks, used by > > https://git-repo.info/ > > for its repo -upload/git pull-request functionality has landed in git master, > > and is slated to be in the next git release... > > > > https://git.kernel.org/pub/scm/git/git.git/commit/?id=6c430a647cb990fc856d328733fa59e1fafadb97 > > > > Which seems like an interesting new approach for this stuff. > > Interesting. If I understand correctly, this allows implementing > something similar to Gerrit's magic branches, where when you push to it, > a script/hook on the server can do something arbitrary with it? More or less, IIUC (haven't not waded into the specific details yet), I believe it just allows one to separate the permissions to various refs/branches based on the protocol used to push. And then then you can do something arbitrary with it. But because it is integrated at the protocol level, you get the distributive aspects of git. which is to me the major distinction. I.e. so you can set up a mirror repository downstream from the gdb one which, but accepts pull-requests. > In any case, I don't think we'll want to develop anything new here, that > wouldn't be a very good way to spend our time. But perhaps this will > lead to useful tools being developed in the future. Totally agree, I just happened to be tinkering with it already, so i'll at least see how my local experiments with it go. > Simon