Message ID | 20240423102915.371782-1-angelogioacchino.delregno@collabora.com (mailing list archive) |
---|---|
State | Mainlined |
Headers | show |
Series | [GIT,PULL,1/2] MediaTek ARM64 Device Tree fixes for v6.9 | expand |
On Tue, Apr 23, 2024, at 12:28, AngeloGioacchino Del Regno wrote: > The following changes since commit 4cece764965020c22cff7665b18a012006359095: > > Linux 6.9-rc1 (2024-03-24 14:10:05 -0700) > > are available in the Git repository at: > > > ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/mediatek/linux.git/ > tags/mtk-dts64-fixes-for-v6.9 Just FYI, these were both merged into v6.9-rc6, but you got no automated notification because I had to merge them manually into the arm/fixes branch. The problem here was the ssh://git@gitolite.k.o/ address, which does not get picked up by the automated tooling, and I see your later pull requests have the correct https:// address instead. Arnd
Il 30/04/24 08:40, Arnd Bergmann ha scritto: > On Tue, Apr 23, 2024, at 12:28, AngeloGioacchino Del Regno wrote: >> The following changes since commit 4cece764965020c22cff7665b18a012006359095: >> >> Linux 6.9-rc1 (2024-03-24 14:10:05 -0700) >> >> are available in the Git repository at: >> >> >> ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/mediatek/linux.git/ >> tags/mtk-dts64-fixes-for-v6.9 > > Just FYI, these were both merged into v6.9-rc6, but you got > no automated notification because I had to merge them manually > into the arm/fixes branch. > > The problem here was the ssh://git@gitolite.k.o/ address, which > does not get picked up by the automated tooling, and I see your > later pull requests have the correct https:// address instead. > > Arnd Yeah, I have to fix my stuff to stop generating the gitolite address when preparing the pull requests. I actually change the address manually before sending, which is suboptimal and apparently prone to that mistake (-> forgetting to change it). Btw, thank you! :-) Cheers, Angelo
On Tue, Apr 30, 2024, at 09:55, AngeloGioacchino Del Regno wrote: > > Yeah, I have to fix my stuff to stop generating the gitolite address when > preparing the pull requests. > This is what I have in my ~/.gitconfig: [url "https://git.kernel.org"] insteadOf = git+ssh://gitolite@ra.kernel.org insteadOf = ssh://git@gitolite.ra.kernel.org insteadOf = http://git.kernel.org That should be sufficient to transform the URLs the way you need. Arnd
Il 30/04/24 10:06, Arnd Bergmann ha scritto: > On Tue, Apr 30, 2024, at 09:55, AngeloGioacchino Del Regno wrote: >> >> Yeah, I have to fix my stuff to stop generating the gitolite address when >> preparing the pull requests. >> > > This is what I have in my ~/.gitconfig: > > [url "https://git.kernel.org"] > insteadOf = git+ssh://gitolite@ra.kernel.org > insteadOf = ssh://git@gitolite.ra.kernel.org > insteadOf = http://git.kernel.org > > That should be sufficient to transform the URLs the way you need. > > Arnd Yeah, it is. Thanks!