Tom Honermann via llvm-dev
2020-Feb-25 17:50 UTC
[llvm-dev] Status of the git.llvm.org git repos
My expectation was that they would continue to be fed from the updates to the svn repo. But again, I don't recall where I got that impression from. It may have been a bad assumption on my part. Tom. From: Anton Korobeynikov <anton at korobeynikov.info> Sent: Tuesday, February 25, 2020 12:36 PM To: Tom Honermann <thonerma at synopsys.com> Cc: llvm-dev at lists.llvm.org; Michael Price <mprice at synopsys.com>; Tim Prince <trprince at synopsys.com>; Christopher Lapkowski <lapkow at synopsys.com> Subject: Re: [llvm-dev] Status of the git.llvm.org git repos Hello These repos were populated from SVN. Noone worked on migration of them to be pulled from monorepo as far as I know. On Tue, Feb 25, 2020 at 8:28 PM Tom Honermann via llvm-dev wrote:> > I was under the impression that the (non-monorepo) separate LLVM and Clang git repos hosted at git.llvm.org would be maintained for a year after the transition to the mono repo. I don't recall where I got that impression from; probably from some of the many emails on the migration topic. I noticed today that updates to these repos ceased on October 22nd of last year following transition to the mono repo. Was I simply mistaken that these repos were not going to be maintained along with the (read-only) svn repo? We had not planned to complete our own transition to the mono repo until a little later this year, but if these repos are no longer maintained, we'll have to readjust our priorities. > > > > I'm aware of the guidance on how to transition (https://llvm.org/docs/Proposals/GitHubMove.html#moving-local-branches-to-the-monorepo) and am not seeking any advice on how to do so. > > > > Tom. > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org> > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev-- With best regards, Anton Korobeynikov Department of Statistical Modelling, Saint Petersburg State University -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200225/c54134fb/attachment.html>
Mehdi AMINI via llvm-dev
2020-Mar-01 05:14 UTC
[llvm-dev] Status of the git.llvm.org git repos
Hi, This was indeed the intended plan (but to update them from the git monorepo instead of SVN), except that no-one implemented it, and no-one really requested it as part of the blockers to migrate. It was also noted a while ago, that if we just write the script to update these mirror, then anyone can run the script locally from the monorepo and get the same result, which makes these mirrors not necessary. This is actually not very complex I think: cd /tmp/ git clone git at github.com:newren/git-filter-repo.git /tmp/git-filter-repo git clone git at github.com:llvm/llvm-project.git cd llvm-project /tmp/git-filter-repo/git-filter-repo --subdirectory-filter llvm --force --refs master # at this point you have a locally something that looks like https://git.llvm.org/git/llvm.git ; but the hashes are different. # the first new commit is 580acd1df4f0c4a865a20ed1e9467425e0dd382e ; we'll cherry-pick all of them on # top of the old repo https://git.llvm.org/git/llvm.git git branch master-rewritten git remote add llvm https://git.llvm.org/git/llvm.git git fetch llvm git reset --hard llvm/master git cherry-pick 580acd1df4f0c4a865a20ed1e9467425e0dd382e~...master-rewritten --allow-empty # done! (after a while...) -- Mehdi On Tue, Feb 25, 2020 at 9:51 AM Tom Honermann via llvm-dev < llvm-dev at lists.llvm.org> wrote:> My expectation was that they would continue to be fed from the updates to > the svn repo. But again, I don't recall where I got that impression from. > It may have been a bad assumption on my part. > > > > Tom. > > > > *From:* Anton Korobeynikov <anton at korobeynikov.info> > *Sent:* Tuesday, February 25, 2020 12:36 PM > *To:* Tom Honermann <thonerma at synopsys.com> > *Cc:* llvm-dev at lists.llvm.org; Michael Price <mprice at synopsys.com>; Tim > Prince <trprince at synopsys.com>; Christopher Lapkowski <lapkow at synopsys.com > > > *Subject:* Re: [llvm-dev] Status of the git.llvm.org git repos > > > > Hello > > These repos were populated from SVN. Noone worked on migration of them > to be pulled from monorepo as far as I know. > > On Tue, Feb 25, 2020 at 8:28 PM Tom Honermann via llvm-dev > wrote: > > > > I was under the impression that the (non-monorepo) separate LLVM and > Clang git repos hosted at git.llvm.org would be maintained for a year > after the transition to the mono repo. I don't recall where I got that > impression from; probably from some of the many emails on the migration > topic. I noticed today that updates to these repos ceased on October 22nd > of last year following transition to the mono repo. Was I simply mistaken > that these repos were not going to be maintained along with the (read-only) > svn repo? We had not planned to complete our own transition to the mono > repo until a little later this year, but if these repos are no longer > maintained, we'll have to readjust our priorities. > > > > > > > > I'm aware of the guidance on how to transition ( > https://llvm.org/docs/Proposals/GitHubMove.html#moving-local-branches-to-the-monorepo) > and am not seeking any advice on how to do so. > > > > > > > > Tom. > > > > _______________________________________________ > > LLVM Developers mailing list > > llvm-dev at lists.llvm.org > > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev > > -- > With best regards, Anton Korobeynikov > Department of Statistical Modelling, Saint Petersburg State University > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200229/cb7bb01e/attachment.html>
Tom Honermann via llvm-dev
2020-Mar-04 17:26 UTC
[llvm-dev] Status of the git.llvm.org git repos
Thenks, Mehdi. I appreciate the detailed response. We're moving ahead with migration to the mono repo now instead of later this year as we had originally planned. Thank you to all that contributed to the migration resources! Tom. From: Mehdi AMINI <joker.eph at gmail.com> Sent: Sunday, March 1, 2020 12:15 AM To: Tom Honermann <thonerma at synopsys.com> Cc: Anton Korobeynikov <anton at korobeynikov.info>; llvm-dev at lists.llvm.org; Michael Price <mprice at synopsys.com>; Tim Prince <trprince at synopsys.com>; Christopher Lapkowski <lapkow at synopsys.com> Subject: Re: [llvm-dev] Status of the git.llvm.org git repos Hi, This was indeed the intended plan (but to update them from the git monorepo instead of SVN), except that no-one implemented it, and no-one really requested it as part of the blockers to migrate. It was also noted a while ago, that if we just write the script to update these mirror, then anyone can run the script locally from the monorepo and get the same result, which makes these mirrors not necessary. This is actually not very complex I think: cd /tmp/ git clone git at github.com:newren/git-filter-repo.git<mailto:git at github.com:newren/git-filter-repo.git> /tmp/git-filter-repo git clone git at github.com:llvm/llvm-project.git<mailto:git at github.com:llvm/llvm-project.git> cd llvm-project /tmp/git-filter-repo/git-filter-repo --subdirectory-filter llvm --force --refs master # at this point you have a locally something that looks like https://git.llvm.org/git/llvm.git<https://urldefense.proofpoint.com/v2/url?u=https-3A__git.llvm.org_git_llvm.git&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=FwWF_jHxpNBr0mgTA-B8NM0VcHz8ZBz7dMYfV3T29AA&e=> ; but the hashes are different. # the first new commit is 580acd1df4f0c4a865a20ed1e9467425e0dd382e ; we'll cherry-pick all of them on # top of the old repo https://git.llvm.org/git/llvm.git<https://urldefense.proofpoint.com/v2/url?u=https-3A__git.llvm.org_git_llvm.git&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=FwWF_jHxpNBr0mgTA-B8NM0VcHz8ZBz7dMYfV3T29AA&e=> git branch master-rewritten git remote add llvm https://git.llvm.org/git/llvm.git<https://urldefense.proofpoint.com/v2/url?u=https-3A__git.llvm.org_git_llvm.git&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=FwWF_jHxpNBr0mgTA-B8NM0VcHz8ZBz7dMYfV3T29AA&e=> git fetch llvm git reset --hard llvm/master git cherry-pick 580acd1df4f0c4a865a20ed1e9467425e0dd382e~...master-rewritten --allow-empty # done! (after a while...) -- Mehdi On Tue, Feb 25, 2020 at 9:51 AM Tom Honermann via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote: My expectation was that they would continue to be fed from the updates to the svn repo. But again, I don't recall where I got that impression from. It may have been a bad assumption on my part. Tom. From: Anton Korobeynikov <anton at korobeynikov.info<mailto:anton at korobeynikov.info>> Sent: Tuesday, February 25, 2020 12:36 PM To: Tom Honermann <thonerma at synopsys.com<mailto:thonerma at synopsys.com>> Cc: llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>; Michael Price <mprice at synopsys.com<mailto:mprice at synopsys.com>>; Tim Prince <trprince at synopsys.com<mailto:trprince at synopsys.com>>; Christopher Lapkowski <lapkow at synopsys.com<mailto:lapkow at synopsys.com>> Subject: Re: [llvm-dev] Status of the git.llvm.org<https://urldefense.proofpoint.com/v2/url?u=http-3A__git.llvm.org&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=havlFmfA9fwSSoaEWMOZ8rtZ3FauizoGi-qRxAOT-Cc&e=> git repos Hello These repos were populated from SVN. Noone worked on migration of them to be pulled from monorepo as far as I know. On Tue, Feb 25, 2020 at 8:28 PM Tom Honermann via llvm-dev wrote:> > I was under the impression that the (non-monorepo) separate LLVM and Clang git repos hosted at git.llvm.org<https://urldefense.proofpoint.com/v2/url?u=http-3A__git.llvm.org&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=havlFmfA9fwSSoaEWMOZ8rtZ3FauizoGi-qRxAOT-Cc&e=> would be maintained for a year after the transition to the mono repo. I don't recall where I got that impression from; probably from some of the many emails on the migration topic. I noticed today that updates to these repos ceased on October 22nd of last year following transition to the mono repo. Was I simply mistaken that these repos were not going to be maintained along with the (read-only) svn repo? We had not planned to complete our own transition to the mono repo until a little later this year, but if these repos are no longer maintained, we'll have to readjust our priorities. > > > > I'm aware of the guidance on how to transition (https://llvm.org/docs/Proposals/GitHubMove.html#moving-local-branches-to-the-monorepo<https://urldefense.proofpoint.com/v2/url?u=https-3A__llvm.org_docs_Proposals_GitHubMove.html-23moving-2Dlocal-2Dbranches-2Dto-2Dthe-2Dmonorepo&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=fFO3XCeliiDn-AmQbL-gyh2QCBzsd3PF5gD2acvzRBU&e=>) and am not seeking any advice on how to do so. > > > > Tom. > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org> > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev<https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.llvm.org_cgi-2Dbin_mailman_listinfo_llvm-2Ddev&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=zfnkOUjYQqii1QiVLsuY01tN8-Ry6rySyHG3DAHF3Os&e=>-- With best regards, Anton Korobeynikov Department of Statistical Modelling, Saint Petersburg State University _______________________________________________ LLVM Developers mailing list llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev<https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.llvm.org_cgi-2Dbin_mailman_listinfo_llvm-2Ddev&d=DwMFaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=G16pPyziSz-5a5VnAMGWoEN2qIMOptadgDXbtSjlFFQ&m=tK-94QpMnC3du1YrUMnYfp1hLsZrD-mwBsoImd8ffms&s=zfnkOUjYQqii1QiVLsuY01tN8-Ry6rySyHG3DAHF3Os&e=> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200304/3e6fd10a/attachment.html>